projects
/
GitHub
/
WoltLab
/
com.woltlab.wcf.conversation.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8261584
)
Improved the styling of the user menu
author
Alexander Ebert
<ebert@woltlab.com>
Fri, 4 Feb 2022 16:54:33 +0000
(17:54 +0100)
committer
Alexander 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
patch
|
blob
|
blame
|
history
ts/WoltLabSuite/Core/Conversation/Ui/User/Menu/Data/Conversation.ts
patch
|
blob
|
blame
|
history
diff --git
a/files/js/WoltLabSuite/Core/Conversation/Ui/User/Menu/Data/Conversation.js
b/files/js/WoltLabSuite/Core/Conversation/Ui/User/Menu/Data/Conversation.js
index a05a40ca8777f2c9e3ea184d6c2c14a655e1fda6..243226d31abc8a07b198da9be4a17c4c78dc2826 100644
(file)
--- a/
files/js/WoltLabSuite/Core/Conversation/Ui/User/Menu/Data/Conversation.js
+++ b/
files/js/WoltLabSuite/Core/Conversation/Ui/User/Menu/Data/Conversation.js
@@
-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;
}
diff --git
a/ts/WoltLabSuite/Core/Conversation/Ui/User/Menu/Data/Conversation.ts
b/ts/WoltLabSuite/Core/Conversation/Ui/User/Menu/Data/Conversation.ts
index b03e8b72b3e9a8353c8f9cc08e25878d17c994cb..2c6c4234134223bb14ae45685cc75ceef1eb0dd2 100644
(file)
--- a/
ts/WoltLabSuite/Core/Conversation/Ui/User/Menu/Data/Conversation.ts
+++ b/
ts/WoltLabSuite/Core/Conversation/Ui/User/Menu/Data/Conversation.ts
@@
-118,6
+118,10
@@
class UserMenuDataConversation implements UserMenuProvider {
return this.options.noItems;
}
+ hasPlainTitle(): boolean {
+ return true;
+ }
+
hasUnreadContent(): boolean {
return this.counter > 0;
}