mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
fix(dashboard): Fix favorite dashboard icon
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
2c0f312f11
commit
3638633a0b
1 changed files with 2 additions and 2 deletions
|
|
@ -53,12 +53,12 @@ class FavoriteWidget implements IIconWidget, IAPIWidgetV2, IButtonWidget, IOptio
|
|||
}
|
||||
|
||||
public function getIconClass(): string {
|
||||
return 'icon-star-dark';
|
||||
return 'icon-starred-dark';
|
||||
}
|
||||
|
||||
public function getIconUrl(): string {
|
||||
return $this->urlGenerator->getAbsoluteURL(
|
||||
$this->urlGenerator->imagePath('core', 'actions/star.svg')
|
||||
$this->urlGenerator->imagePath('core', 'actions/star-dark.svg')
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue