From 6e44f30652ac477e780aa8503e2c61f15d0ce474 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Mon, 8 Jun 2026 16:51:56 +0200 Subject: [PATCH] fix(comments): load comments styles when the comments app is loaded Signed-off-by: Ferdinand Thiessen --- lib/private/Comments/Manager.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/private/Comments/Manager.php b/lib/private/Comments/Manager.php index c6857162f2bee..dfae699c6aff8 100644 --- a/lib/private/Comments/Manager.php +++ b/lib/private/Comments/Manager.php @@ -1581,6 +1581,7 @@ private function sendEvent(CommentsEvent $event): void { #[\Override] public function load(): void { $this->initialStateService->provideInitialState('comments', 'max-message-length', IComment::MAX_MESSAGE_LENGTH); + Util::addStyle('comments', 'comments-app'); Util::addScript('comments', 'comments-app'); }