Skip to content

Commit

Permalink
Duster fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jehizkia committed Oct 31, 2023
1 parent a8c7ff2 commit 24a0b4e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/translation-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@

'navigation_group_translation_key' => null,

'navigation_group' => null,
'navigation_group' => null,

/*
|--------------------------------------------------------------------------
Expand Down
5 changes: 3 additions & 2 deletions src/Resources/LanguageLineResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public static function table(Table $table): Table
EditAction::make(),
])
->bulkActions([])
->paginated([10, 25, 50])
->paginated([10, 25, 50])
->defaultPaginationPageOption(25);
}

Expand Down Expand Up @@ -160,9 +160,10 @@ public static function getNavigationLabel(): string

public static function getNavigationGroup(): ?string
{
if (config('translation-manager.navigation_group_translation_key')){
if (config('translation-manager.navigation_group_translation_key')) {
return __(config('translation-manager.navigation_group_translation_key'));
}

return config('translation-manager.navigation_group');
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,4 @@ protected function getActions(): array
->action('synchronize')->tooltip('oke'),
];
}

}

0 comments on commit 24a0b4e

Please sign in to comment.