Merge pull request #1726 from nextcloud/bugfix/sharing-search

This commit is contained in:
Julius Härtl
2020-04-21 09:56:04 +02:00
committed by GitHub
3 changed files with 20 additions and 8 deletions

View File

@@ -132,10 +132,13 @@ export default {
})
},
},
mounted() {
this.asyncFind('')
},
methods: {
asyncFind(query) {
this.isLoading = true
this.$store.dispatch('loadSharees').then(response => {
this.$store.dispatch('loadSharees', query).then(response => {
this.isLoading = false
})
},