Skip to content

Commit

Permalink
Apply style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pxlrbt authored and github-actions[bot] committed May 22, 2023
1 parent 9eb6e6c commit 1b6ebca
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion resources/lang/de/activities.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
'created' => 'Erstellt',
'deleted' => 'Gelöscht',
'restored' => 'Wiederhergestellt',
]
],
];
2 changes: 1 addition & 1 deletion resources/lang/en/activities.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
'created' => 'Created',
'deleted' => 'Deleted',
'restored' => 'Restored',
]
],
];
1 change: 0 additions & 1 deletion src/FilamentActivityLogServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace pxlrbt\FilamentActivityLog;

use Filament\Facades\Filament;
use Filament\PluginServiceProvider;
use Spatie\LaravelPackageTools\Package;

Expand Down
2 changes: 1 addition & 1 deletion src/Pages/ListActivities.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ protected function createFieldLabelMap(): Collection
return $extracted
->filter(fn ($field) => $field instanceof Field)
->mapWithKeys(fn (Field $field) => [
$field->getName() => $field->getLabel()
$field->getName() => $field->getLabel(),
]);
}

Expand Down

0 comments on commit 1b6ebca

Please sign in to comment.