diff --git a/src/components/Tags/Tags.vue b/src/components/Tags/Tags.vue index 8e7db41a..3fd3995b 100644 --- a/src/components/Tags/Tags.vue +++ b/src/components/Tags/Tags.vue @@ -142,7 +142,7 @@ export default { methods: { createTag() { - this.$set(this.localTags, this.tagName.toLowerCase(), this.newTag); + this.$set(this.localTags, this.tagName, this.newTag); this.$bus.$emit('SAVE_TAGS', this.localTags); this.reset(); },