Skip to content

Commit

Permalink
Merge pull request #99 from mkocansey/development
Browse files Browse the repository at this point in the history
Fixed bug with component/radio being disabled by default
  • Loading branch information
mkocansey authored Feb 9, 2023
2 parents e6c2c92 + d4626d7 commit 291509d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/components/radio-button.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
'name' => 'radio',
'value' => '',
'label' => '',
'checked' => 'false',
'disabled' => 'false',
'checked' => false,
'disabled' => false,
])
<x-bladewind::checkbox
name="{{$name}}"
Expand Down

0 comments on commit 291509d

Please sign in to comment.