Improved the styling of the user menu
authorAlexander Ebert <ebert@woltlab.com>
Fri, 4 Feb 2022 16:54:33 +0000 (17:54 +0100)
committerAlexander Ebert <ebert@woltlab.com>
Fri, 4 Feb 2022 16:54:33 +0000 (17:54 +0100)
files/js/WoltLabSuite/Core/Conversation/Ui/User/Menu/Data/Conversation.js
ts/WoltLabSuite/Core/Conversation/Ui/User/Menu/Data/Conversation.ts

index a05a40ca8777f2c9e3ea184d6c2c14a655e1fda6..243226d31abc8a07b198da9be4a17c4c78dc2826 100644 (file)
@@ -74,6 +74,9 @@ define(["require", "exports", "tslib", "WoltLabSuite/Core/Ajax", "WoltLabSuite/C
         getEmptyViewMessage() {
             return this.options.noItems;
         }
+        hasPlainTitle() {
+            return true;
+        }
         hasUnreadContent() {
             return this.counter > 0;
         }
index b03e8b72b3e9a8353c8f9cc08e25878d17c994cb..2c6c4234134223bb14ae45685cc75ceef1eb0dd2 100644 (file)
@@ -118,6 +118,10 @@ class UserMenuDataConversation implements UserMenuProvider {
     return this.options.noItems;
   }
 
+  hasPlainTitle(): boolean {
+    return true;
+  }
+
   hasUnreadContent(): boolean {
     return this.counter > 0;
   }