Skip to content

Commit

Permalink
Merge pull request #15268 from tanthammar/patch-14
Browse files Browse the repository at this point in the history
Prevent min width on not individually searchable table columns
  • Loading branch information
danharrin authored Jan 7, 2025
2 parents ce4d9d0 + c72de15 commit 0602973
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/tables/resources/views/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -944,10 +944,10 @@ class="fi-ta-actions-header-cell w-1"
<x-filament-tables::cell
@class([
'fi-table-individual-search-cell-' . str($column->getName())->camel()->kebab(),
'min-w-48 px-3 py-2',
'min-w-48 px-3 py-2' => $isIndividuallySearchable = $column->isIndividuallySearchable(),
])
>
@if ($column->isIndividuallySearchable())
@if ($isIndividuallySearchable)
<x-filament-tables::search-field
:debounce="$searchDebounce"
:on-blur="$isSearchOnBlur"
Expand Down

0 comments on commit 0602973

Please sign in to comment.