Skip to content

Commit b13ed56

Browse files
committed
Remove unnecessary bulk delete actions
1 parent 44ada4d commit b13ed56

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

app/Filament/Resources/Articles/Tables/ArticlesTable.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,7 @@ public static function configure(Table $table): Table
5050
->icon('heroicon-s-eye'),
5151
])
5252
->toolbarActions([
53-
BulkActionGroup::make([
54-
DeleteBulkAction::make(),
55-
]),
53+
//
5654
]);
5755
}
5856
}

app/Filament/Resources/Users/Tables/UsersTable.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,7 @@ public static function configure(Table $table): Table
184184
]),
185185
])
186186
->toolbarActions([
187-
BulkActionGroup::make([
188-
DeleteBulkAction::make(),
189-
]),
187+
//
190188
]);
191189
}
192190
}

0 commit comments

Comments
 (0)