Skip to content

Commit

Permalink
Allow bulk deletion of bugged clients
Browse files Browse the repository at this point in the history
  • Loading branch information
Thiritin committed Aug 31, 2023
1 parent 2a7b634 commit e2eecf0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/Filament/Resources/ClientResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
use Filament\Resources\Table;
use Filament\Tables\Actions\Action;
use Filament\Tables\Actions\BulkAction;
use Filament\Tables\Actions\DeleteBulkAction;
use Filament\Tables\Columns\TextColumn;
use Filament\Tables\Filters\Filter;
use Filament\Tables\Filters\SelectFilter;
Expand Down Expand Up @@ -104,6 +105,7 @@ public static function table(Table $table): Table
->icon('heroicon-o-x-circle')
->label('Disconnect Clients')
->deselectRecordsAfterCompletion(),
DeleteBulkAction::class,
])->poll(10);
}

Expand Down

0 comments on commit e2eecf0

Please sign in to comment.