diff --git a/components/admin/Tags.vue b/components/admin/Tags.vue index 6670ebca..02a0d15c 100644 --- a/components/admin/Tags.vue +++ b/components/admin/Tags.vue @@ -13,7 +13,6 @@ v-container strong.ml-2 {{tag.tag}} v-card-subtitle {{$tc('admin.edit_tag_help', tag.count)}} v-card-text - p {{newTag}} v-form(v-model='valid' ref='form' lazy-validation) v-combobox(v-model='newTag' :prepend-icon="mdiTag" @@ -94,6 +93,7 @@ export default { this.$nextTick( async () => { await this.$axios.$put('/tag', { tag: this.tag.tag, newTag: this.newTag }) await this.$fetch() + this.newTag = '' this.loading = false this.dialog = false })