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);