This commit is contained in:
Timothy J. Baek 2024-10-23 20:49:18 -07:00
parent d0662e2518
commit 0f4b6cdb67

View File

@ -427,7 +427,16 @@
if (tags) {
updatedMessage.annotation.tags = tags;
feedbackItem.data.tags = tags;
dispatch('save', updatedMessage);
await updateFeedbackById(
localStorage.token,
updatedMessage.feedbackId,
feedbackItem
).catch((error) => {
toast.error(error);
});
}
}
}