Skip to content

Commit

Permalink
Update search.blade.php (#1553)
Browse files Browse the repository at this point in the history
Fixed search input styling.

Previously, the styling of the search input was being incorrectly set using 'inputClass', now it has been corrected to use 'inputStyle', as specified correctly in the theme.
  • Loading branch information
WilliamAlmeida committed May 16, 2024
1 parent 780ebd3 commit 3740269
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class="{{ data_get($theme, 'searchBox.iconSearchClass') }}"
wire:model.live.debounce.700ms="search"
type="text"
class="{{ data_get($theme, 'searchBox.inputClass') }}"
style="{{ data_get($theme, 'searchBox.inputClass') }}"
style="{{ data_get($theme, 'searchBox.inputStyle') }}"
placeholder="{{ trans('livewire-powergrid::datatable.placeholders.search') }}"
>
@if ($search)
Expand Down

0 comments on commit 3740269

Please sign in to comment.