Merge pull request #6639 from Ocelot-Social-Community/6636-search-trigger-after-3-chars

fix(webapp): start search of user after three characters (chat new room, add group member)
This commit is contained in:
Hannes Heine 2023-07-26 13:54:35 +02:00 committed by GitHub
commit 0eb6a540f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,7 +54,7 @@ export default {
},
computed: {
startSearch() {
return this.query && this.query.length > 3
return this.query && this.query.length >= 3
},
},
methods: {