isIndividual column search removes table when no results

I have a TextColumn that I want to make searchable and set isIndividual to true:
TextColumn::make('user.full_name')
  ->label('Name')
  ->sortable(['first_name', 'last_name', 'company'])
  ->searchable(['first_name', 'last_name', 'company'], isIndividual: true),

Which works great. But when I search for a name that does not exist, the table is removed and the search field (see screenshots). Is it possible to just show an empty table instead of nuking the table when there are no search results?
This adds an annoying element of with using isIndividual: true, as you have to clear the added filter and retype the search every time you search for something that does not exist, instead of just changing your search input.
image.png
image.png
image.png
Solution
GitHub
Package filament/filament Package Version v3.2.96 Laravel Version v11.7.0 Livewire Version v3.5.1 PHP Version PHP 8.2 Problem description I have a TextColumn that I want to make searchable and set ...
Was this page helpful?