Skip to content

Commit 5e5eff3

Browse files
committed
Fixed typo in class name
Thanks to @jamie on larachat for catching this one!
1 parent 22b1ebb commit 5e5eff3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

config/aire.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
'label' => 'inline-block mb-2 font-semibold',
8989
'input' => 'block w-full p-2 text-base leading-normal bg-white border rounded-sm',
9090
'checkbox' => 'pr-2',
91-
'checkbox_label' => 'flex items-center',
91+
'checkbox_label' => 'flex items-baseline',
9292
'checkbox_wrapper' => 'ml-2 flex-1',
9393
'checkbox_group_label' => 'flex items-baseline mb-2 ml-2 border-transparent border-l',
9494
'checkbox_group_label_wrapper' => 'flex-1 ml-2',

views/checkbox-group.blade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
value="{{ $prepend_empty_option->value }}"
1111
{{ $attributes->isValue($prepend_empty_option->value) ? 'checked' : '' }}
1212
/>
13-
<span {{ $attributes->label_wrappwer }}>
13+
<span {{ $attributes->label_wrapper }}>
1414
{{ $prepend_empty_option->label }}
1515
</span>
1616
</label>
@@ -24,7 +24,7 @@
2424
value="{{ $option_value }}"
2525
{{ $attributes->isValue($option_value) ? 'checked' : '' }}
2626
/>
27-
<span {{ $attributes->label_wrappwer }}>
27+
<span {{ $attributes->label_wrapper }}>
2828
{{ $option_label }}
2929
</span>
3030
</label>

0 commit comments

Comments
 (0)