diff options
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/views/UnifiedSearch.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/views/UnifiedSearch.vue b/core/src/views/UnifiedSearch.vue index 0114f2fcf13..c83d2dc4351 100644 --- a/core/src/views/UnifiedSearch.vue +++ b/core/src/views/UnifiedSearch.vue @@ -312,14 +312,14 @@ export default { this.types = await getTypes() }, onClose() { - emit('nextcloud:unified-search:close') + emit('nextcloud:unified-search.close') }, /** * Reset the search state */ onReset() { - emit('nextcloud:unified-search:reset') + emit('nextcloud:unified-search.reset') this.logger.debug('Search reset') this.query = '' this.resetState() @@ -371,7 +371,7 @@ export default { */ async onInput() { // emit the search query - emit('nextcloud:unified-search:search', { query: this.query }) + emit('nextcloud:unified-search.search', { query: this.query }) // Do not search if not long enough if (this.query.trim() === '' || this.isShortQuery) { |