From e7e3370baacd0d08f916fe292ce1c1ebbd4c36c8 Mon Sep 17 00:00:00 2001 From: James Cole Date: Mon, 31 Oct 2022 20:12:19 +0100 Subject: [PATCH] Fix https://github.com/firefly-iii/firefly-iii/issues/6581 --- resources/assets/js/components/transactions/Tags.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/resources/assets/js/components/transactions/Tags.vue b/resources/assets/js/components/transactions/Tags.vue index ebea743ac2..0032bdbb5c 100644 --- a/resources/assets/js/components/transactions/Tags.vue +++ b/resources/assets/js/components/transactions/Tags.vue @@ -22,7 +22,7 @@
- {{ $t('firefly.tags') }} + {{ $t('firefly.tags') }} XX
@@ -74,18 +74,22 @@ export default { }, methods: { update(newTags) { + console.log('update', newTags); this.autocompleteItems = []; this.tags = newTags; this.$emit('input', this.tags); }, clearTags() { + console.log('clearTags'); this.tags = []; + this.$emit('input', this.tags); + }, hasError: function () { return this.error.length > 0; }, initItems() { - // console.log('Now in initItems'); + console.log('Now in initItems'); if (this.tag.length < 2) { return; }