Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-09-15 18:47:30 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-09-18 09:11:54 +0300
commit301006af2053bd210b8d9585b7b5f64a6f3b7aac (patch)
treeb4d8af0cab05f9c51adfdcc43c547c91c3d8db92 /apps/settings/src/views
parent7991ed6cf3197180ec0e45333733016988dc302f (diff)
Build assets and fix unified search event syntax
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/settings/src/views')
-rw-r--r--apps/settings/src/views/Apps.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/settings/src/views/Apps.vue b/apps/settings/src/views/Apps.vue
index ca45276f589..e4060b6bb10 100644
--- a/apps/settings/src/views/Apps.vue
+++ b/apps/settings/src/views/Apps.vue
@@ -280,12 +280,12 @@ export default {
},
mounted() {
- subscribe('nextcloud:unified-search:search', this.setSearch)
- subscribe('nextcloud:unified-search:reset', this.resetSearch)
+ subscribe('nextcloud:unified-search.search', this.setSearch)
+ subscribe('nextcloud:unified-search.reset', this.resetSearch)
},
beforeDestroy() {
- unsubscribe('nextcloud:unified-search:search', this.setSearch)
- unsubscribe('nextcloud:unified-search:reset', this.resetSearch)
+ unsubscribe('nextcloud:unified-search.search', this.setSearch)
+ unsubscribe('nextcloud:unified-search.reset', this.resetSearch)
},
methods: {