last updates

This commit is contained in:
Henry Jordan
2021-08-26 20:33:59 +00:00
parent 69bf294f4b
commit 4732ffc6b3
15 changed files with 406 additions and 180 deletions

View File

@@ -55,7 +55,9 @@ export default {
api.cases.unpause(this.data).then((response) => {
if (response.statusText == "OK") {
that.$refs["modal-unpause-case"].hide();
that.$parent.$refs["vueTable"].getData();
if (that.$parent.$refs["vueTable"]) { // TODO this component should be return a event to parent to code in the parent
that.$parent.$refs["vueTable"].getData();
}
}
});
},