FIX: Notification backdrop does not display when user menu has been toggled.

https://meta.discourse.org/t/first-pm-spotlight-does-not-work-with-welcome-message-delay/64927/16?u=tgxworld
This commit is contained in:
Guo Xiang Tan 2017-06-23 11:35:06 +09:00
parent 3f4b5e0246
commit cbedc1a2ca
1 changed files with 4 additions and 1 deletions

View File

@ -282,7 +282,10 @@ export default createWidget('header', {
},
toggleUserMenu() {
this.state.ringBackdrop = false;
if (this.currentUser.get('read_first_notification')) {
this.state.ringBackdrop = false;
};
this.state.userVisible = !this.state.userVisible;
},