Skip to content

Commit

Permalink
fix: Remove article meta tag is not working (#8489)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamsivin committed Dec 5, 2023
1 parent 449503b commit c1ac354
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -91,6 +91,7 @@
@search-change="handleSearchChange"
@close="onBlur"
@tag="addTagValue"
@remove="removeTag"
/>
</label>
</div>
Expand Down Expand Up @@ -203,6 +204,9 @@ export default {
this.metaTags.push(...this.formattedTags({ tags: [...new Set(tags)] }));
this.saveArticle();
},
removeTag() {
this.saveArticle();
},
handleSearchChange(value) {
this.tagInputValue = value;
},
Expand Down

0 comments on commit c1ac354

Please sign in to comment.