diff --git a/src/components/Event/TagInput.vue b/src/components/Event/TagInput.vue index b8702c410..ce10909b7 100644 --- a/src/components/Event/TagInput.vue +++ b/src/components/Event/TagInput.vue @@ -15,8 +15,7 @@ { ); }); -// TODO It seems that '@update:modelValue="updateTags"' does not works anymore... -// so temporarily call the function updateTags() at remove and add tag event -// https://github.com/oruga-ui/oruga/issues/967 -function remove() { - updateTags(tagsStrings.value); -} - -function add() { - updateTags(tagsStrings.value); -} - const updateTags = (newTagsStrings: string[]) => { const tagEntities = newTagsStrings.map((tag: string | ITag) => { if (typeof tag !== "string") {