diff options
Diffstat (limited to 'apps/updatenotification/js-src/components/root.vue')
-rw-r--r-- | apps/updatenotification/js-src/components/root.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/updatenotification/js-src/components/root.vue b/apps/updatenotification/js-src/components/root.vue index 79a6b827e8d..5c77bbcb986 100644 --- a/apps/updatenotification/js-src/components/root.vue +++ b/apps/updatenotification/js-src/components/root.vue @@ -297,10 +297,10 @@ toggleHideAvailableUpdates: function() { this.hideAvailableUpdates = !this.hideAvailableUpdates; }, - toggleMenu() { + toggleMenu: function() { this.openedWhatsNew = !this.openedWhatsNew; }, - hideMenu() { + hideMenu: function() { this.openedWhatsNew = false; }, }, |