From 553989b61b9d93a4222c9748b1bf906b3575f1a0 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 11 Jul 2024 10:51:35 +0200 Subject: [PATCH] fix(dashboard): Fix missing dashboard icon Signed-off-by: Joas Schilling --- lib/Dashboard/TalkWidget.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Dashboard/TalkWidget.php b/lib/Dashboard/TalkWidget.php index 9748dabe88b..096328878f2 100644 --- a/lib/Dashboard/TalkWidget.php +++ b/lib/Dashboard/TalkWidget.php @@ -53,6 +53,7 @@ use OCP\IURLGenerator; use OCP\IUser; use OCP\IUserSession; +use OCP\Util; class TalkWidget implements IAPIWidget, IIconWidget, IButtonWidget, IOptionWidget, IConditionalWidget, IReloadableWidget { @@ -142,6 +143,7 @@ public function getUrl(): ?string { * @inheritDoc */ public function load(): void { + Util::addStyle('spreed', 'icons'); } public function getItems(string $userId, ?string $since = null, int $limit = 7): array {