diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-06-01 16:01:01 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-06-29 09:08:33 +0200 |
commit | 7ad0a43cc1496d352ee7cdf6425425b34259a8f9 (patch) | |
tree | 15cda511213e5dc9a454e479f942ab0bc12730b0 /apps/updatenotification | |
parent | 1e0761c6b8f035e73f89afa66dcdcf032e5f917d (diff) | |
download | nextcloud-server-7ad0a43cc1496d352ee7cdf6425425b34259a8f9.tar.gz nextcloud-server-7ad0a43cc1496d352ee7cdf6425425b34259a8f9.zip |
fix method declaration
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/updatenotification')
-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; }, }, |