diff --git a/components/post/multiviewer/viewer/update_post_form.vue b/components/post/multiviewer/viewer/update_post_form.vue index 03dca2a4b..131dd674c 100644 --- a/components/post/multiviewer/viewer/update_post_form.vue +++ b/components/post/multiviewer/viewer/update_post_form.vue @@ -329,8 +329,10 @@ function updatePost(): void { const hasUpdatedTags = ref(true) function updateTags() { + const tagIDs = tags.value.map(tag => tag.id) hasUpdatedTags.value = false - // Add code to update the tags + fetcher.updateAttachedTags(props.modelValue.id, tagIDs) + .then() hasUpdatedTags.value = true }