Merge pull request #53964 from nextcloud/fix-clearing-unified-search-when-modal-is-closed

fix: Fix clearing unified search when modal is closed
pull/53984/head
Daniel Calviño Sánchez 2025-07-17 13:40:54 +07:00 committed by GitHub
commit 8fc37b2249
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10 additions and 4 deletions

@ -329,7 +329,13 @@ export default defineComponent({
query: {
immediate: true,
handler() {
this.searchQuery = this.query.trim()
this.searchQuery = this.query
},
},
searchQuery: {
handler() {
this.$emit('update:query', this.searchQuery)
},
},
},

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long