Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
markvaneijk committed Nov 19, 2024
2 parents 531cda1 + 6a6e149 commit cc7581b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Resources/RedirectResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public static function table(Table $table): Table
->width(0)
->searchable()
->sortable()
->color(fn(string $state): string => match ($state) {
->color(fn (string $state): string => match ($state) {
'301' => 'info',
'302' => 'gray',
'307' => 'warning',
Expand All @@ -94,7 +94,7 @@ public static function table(Table $table): Table
->searchable()
->sortable()
->alignRight()
->formatStateUsing(fn(string $state): string => $state . ' ×')
->formatStateUsing(fn (string $state): string => $state . ' ×')
->width(50),
])
->filters([
Expand Down

0 comments on commit cc7581b

Please sign in to comment.