Start search after three characters.

This commit is contained in:
elweyn 2023-07-26 11:17:05 +02:00
parent a5578e4ff4
commit f9c71bad74

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: {