From 5f2550fac8d665d904f2292f3859dc29b1a694fb Mon Sep 17 00:00:00 2001 From: Ivo Ketelaar Date: Fri, 8 Jul 2022 13:12:02 +0200 Subject: [PATCH] Fix typeaheadCallback search suggestions As described in this issue in the original repository: https://github.com/voerro/vue-tagsinput/issues/149#issuecomment-877595366 Would be nice to be able to use your repository for now. --- src/VoerroTagsInput.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/VoerroTagsInput.vue b/src/VoerroTagsInput.vue index 5b96f37..22d56fd 100644 --- a/src/VoerroTagsInput.vue +++ b/src/VoerroTagsInput.vue @@ -580,6 +580,7 @@ export default { this.typeaheadCallback(searchQuery) .then((results) => { this.typeaheadTags = results; + this.doSearch(searchQuery); }); } else if (this.typeaheadUrl.length > 0) { this.typeaheadTags.splice(0);