From 796f44de8482e86881771c7b953aa89abb2c32bc Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Thu, 8 Oct 2020 15:12:30 +0000 Subject: [PATCH] --- ayanova/src/components/tag-picker.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ayanova/src/components/tag-picker.vue b/ayanova/src/components/tag-picker.vue index 7c25daf6..473c9c49 100644 --- a/ayanova/src/components/tag-picker.vue +++ b/ayanova/src/components/tag-picker.vue @@ -107,7 +107,7 @@ export default { methods: { addTag() { let theTag = this.tagSearchEntry; - theTag = window.$gz.util.normalizeTag(theTag); + theTag = this.normalizeTag(theTag); //Maybe need to make sure there are no existing of the same tag? Although that shouldn't be possible technically this.sourcetags.push(theTag); this.value.push(theTag);