Respect tag name when saving

This commit is contained in:
Roman Cervantes 2019-02-18 05:08:00 -07:00
parent 6b841e08d4
commit 3480651597

View file

@ -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();
},