From 3480651597b61214c300ad0cb9d8cc3e84615a7a Mon Sep 17 00:00:00 2001 From: Roman Cervantes Date: Mon, 18 Feb 2019 05:08:00 -0700 Subject: [PATCH] Respect tag name when saving --- src/components/Tags/Tags.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); },