close modals when saving

This commit is contained in:
busti 2019-12-27 02:38:58 +01:00
parent d3a52aae06
commit 7131a54455
3 changed files with 6 additions and 5 deletions

View file

@ -97,7 +97,7 @@ export default {
},
saveEditingItem() { // Saves the edited copy of the item.
this.$store.dispatch('updateItem', this.editingItem);
this.closeLightboxModal();
this.closeEditingModal();
}
}
};