Skip to content

Commit

Permalink
fix(filters): fix input text filter (#1185)
Browse files Browse the repository at this point in the history
Input text filter lose options text in bootstrap
  • Loading branch information
jamesRUS52 authored Sep 28, 2023
1 parent c75f637 commit 12584c8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class="{{ $selectClasses }}"
>
@foreach ($inputTextOptions as $key => $value)
<option
wire:key="{{ uniqid() }}"
wire:key="input-text-options-{{ $tableName }}-{{ $key . '-' . $value }}"
value="{{ $value }}"
>{{ trans('livewire-powergrid::datatable.input_text_options.' . $value) }}</option>
@endforeach
Expand Down

0 comments on commit 12584c8

Please sign in to comment.