Skip to content

Commit

Permalink
Update theme.css
Browse files Browse the repository at this point in the history
  • Loading branch information
danharrin committed Dec 5, 2024
1 parent 4aea767 commit 27b834f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/theme.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/03-resources/01-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -544,4 +544,4 @@ public static function getPages(): array
}
```

Deleting a page will not delete any actions that link to that page. Any actions will open a modal instead of sending the user to the non-existant page. For instance, the `CreateAction` on the List page, the `EditAction` on the table or View page, or the `ViewAction` on the table or Edit page. If you want to remove those buttons, you must delete the actions as well.
Deleting a page will not delete any actions that link to that page. Any actions will open a modal instead of sending the user to the non-existent page. For instance, the `CreateAction` on the List page, the `EditAction` on the table or View page, or the `ViewAction` on the table or Edit page. If you want to remove those buttons, you must delete the actions as well.
3 changes: 3 additions & 0 deletions docs/06-navigation.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Navigation
---
import AutoScreenshot from "@components/AutoScreenshot.astro"

## Overview

Expand Down Expand Up @@ -460,6 +461,8 @@ public function panel(Panel $panel): Panel
}
```

<AutoScreenshot name="panels/navigation/user-menu" alt="User menu with custom menu item" version="3.x" />

### Customizing the profile link

To customize the user profile link at the start of the user menu, register a new item with the `profile` array key:
Expand Down
2 changes: 1 addition & 1 deletion src/Pages/Auth/PasswordReset/RequestPasswordReset.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function (CanResetPassword $user, string $token): void {
throw new Exception("Model [{$userClass}] does not have a [notify()] method.");
}

$notification = new ResetPasswordNotification($token);
$notification = app(ResetPasswordNotification::class, ['token' => $token]);
$notification->url = Filament::getResetPasswordUrl($token, $user);

$user->notify($notification);
Expand Down

0 comments on commit 27b834f

Please sign in to comment.