File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
resources/views/components/tools Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ class="block w-full border-gray-300 rounded-md shadow-sm transition duration-150
20
20
wire:model.stop =" {{ $component -> getTableName () } } .filters.{{ $filter -> getKey () } }"
21
21
wire:key =" {{ $component -> getTableName () } } -filter-{{ $filter -> getKey () } }"
22
22
id =" {{ $component -> getTableName () } } -filter-{{ $filter -> getKey () } }"
23
- class =" form-control"
23
+ class =" {{ $theme === ' bootstrap-4 ' ? ' form-control' : ' form-select ' } } "
24
24
>
25
25
@foreach ($filter -> getOptions () as $key => $value )
26
26
<option value =" {{ $key } }" >{{ $value } } </option >
Original file line number Diff line number Diff line change @@ -829,7 +829,7 @@ class="px-2 {{ $loop->last ? 'mb-0' : 'mb-1' }}"
829
829
<select
830
830
wire:model =" perPage"
831
831
id =" perPage"
832
- class =" form-control "
832
+ class =" form-select "
833
833
>
834
834
@foreach ($component -> getPerPageAccepted () as $item )
835
835
<option value =" {{ $item } }" wire:key =" per-page-{{ $item } } -{{ $component -> getTableName () } }" >{{ $item === - 1 ? __ (' All' ) : $item } } </option >
You can’t perform that action at this time.
0 commit comments