Case Notes fixed for modal window

This commit is contained in:
Martin Laguna
2022-10-03 16:32:25 -04:00
parent 6b0098c5d4
commit 061f55552e

View File

@@ -93,11 +93,10 @@ export default {
})
)
.then((response) => {
if (response.status === 200) {
if (response.status === 200 || response.status === 201) {
that.attachDocuments = false;
that.dataAttachedDocuments.items = [];
that.getCasesNotes();
this.$refs["modal-comments"].hide();
this.$emit("postNotes");
}
})