Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
atmonshi authored and github-actions[bot] committed Jan 14, 2025
1 parent df9a037 commit 8760622
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Filament/ChaosResource/ChaosTables.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public static function make(
->visible(fn () => static::resourceHasPage($resource, 'view')),
Tables\Actions\EditAction::make()->color('info')->visible(static::resourceHasPage($resource, 'edit')),
Tables\Actions\DeleteAction::make()
->visible(function($record) use ($actions, $resource) {
->visible(function ($record) use ($actions, $resource) {
return collect($actions)->filter(function ($utem) {
return $utem instanceof Tables\Actions\DeleteAction;
})->isEmpty()
Expand Down
4 changes: 1 addition & 3 deletions src/Forms/Components/UserCardColumn.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@

use LaraZeus\Popover\Tables\PopoverColumn;

class UserCardColumn extends PopoverColumn
{
}
class UserCardColumn extends PopoverColumn {}

0 comments on commit 8760622

Please sign in to comment.