Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions src/Datatables/src/Datatable.php
Original file line number Diff line number Diff line change
Expand Up @@ -177,16 +177,6 @@ public function actions(): array
return [];
}

/**
* Get the default action group for the datatable.
*
* @deprecated Use ActionGroup::auto() instead.
*/
public static function defaultActionGroup(array $actions, ?string $label = null, ?string $icon = null): array
{
return ActionGroup::auto($actions, $label, $icon);
}

/**
* Get the bulk actions for the datatable.
*/
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Core/Models/SettingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

it('returns the configured default for a key including nested dot paths', function () {
expect(Setting::default('theme.primary'))->toBe('blue')
->and(Setting::default('app_name.en'))->toBe('Dashboard')
->and(Setting::default('app_name.en'))->toBe('Nexus')
->and(Setting::default('missing'))->toBeNull();
});

Expand Down
Loading