Skip to content

Commit

Permalink
Merge pull request #15108 from dododedodonl/fix/indiviual-search-bar
Browse files Browse the repository at this point in the history
Fix table ui when all searchable colums hidden
  • Loading branch information
danharrin authored Dec 17, 2024
2 parents d5588dc + 1938f5b commit 090fc9e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/tables/src/Table/Concerns/CanSearchRecords.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ public function isSearchableByColumn(): bool
continue;
}

if (! $column->isVisible()) {
continue;
}

return true;
}

Expand Down

0 comments on commit 090fc9e

Please sign in to comment.