Merge pull request #53989 from nextcloud/backport/53964/stable30

[stable30] fix: Fix clearing unified search when modal is closed
This commit is contained in:
Daniel Calviño Sánchez 2025-07-17 14:47:38 +02:00 committed by GitHub
commit 0403843943
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 4 deletions

View file

@ -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