Skip to content

Commit

Permalink
Merge branch 'main' of github.com:stephenjude/filament-jetstream
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenjude committed Aug 3, 2024
2 parents 6ac19af + fe7aca9 commit cb3f6df
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2.1.0
uses: dependabot/fetch-metadata@v2.2.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `filament-jetstream` will be documented in this file.

## 0.0.12 - 2024-06-20

- Fixed user profile URL bug

## 0.0.11 - 2024-06-12

- Fixed Laravel 11 User model scaffold bug
Expand Down
1 change: 0 additions & 1 deletion src/Commands/FilamentJetstreamCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public function handle(): int
return self::FAILURE;
}


$this->info('Installing Jetstream components started');
$this->call('jetstream:install', [
'stack' => 'livewire',
Expand Down
6 changes: 3 additions & 3 deletions stubs/App/Providers/Filament/AppPanelProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function panel(Panel $panel): Panel
MenuItem::make()
->label('Profile')
->icon('heroicon-o-user-circle')
->url(fn() => $this->shouldRegisterMenuItem()
->url(fn () => $this->shouldRegisterMenuItem()
? url(EditProfile::getUrl())
: url($panel->getPath())),
])
Expand Down Expand Up @@ -87,7 +87,7 @@ public function panel(Panel $panel): Panel
MenuItem::make()
->label('API Tokens')
->icon('heroicon-o-key')
->url(fn() => $this->shouldRegisterMenuItem()
->url(fn () => $this->shouldRegisterMenuItem()
? url(ApiTokens::getUrl())
: url($panel->getPath())),
]);
Expand All @@ -102,7 +102,7 @@ public function panel(Panel $panel): Panel
MenuItem::make()
->label('Team Settings')
->icon('heroicon-o-cog-6-tooth')
->url(fn() => $this->shouldRegisterMenuItem()
->url(fn () => $this->shouldRegisterMenuItem()
? url(EditTeam::getUrl())
: url($panel->getPath())),
]);
Expand Down

0 comments on commit cb3f6df

Please sign in to comment.