This commit is contained in:
2020-10-08 20:31:06 +00:00
parent 5d0ed46c56
commit 6b357b8500
21 changed files with 32 additions and 111 deletions

View File

@@ -1,4 +1,4 @@
export default {
version: "8.0.0-alpha.71",
version: "8.0.0-alpha.72",
copyright: "© 1999-2020, Ground Zero Tech-Works Inc."
};

View File

@@ -1008,16 +1008,16 @@ export default {
}
}
return true;
// let allValid = true;
// refs.every(function gzformCheckControlsAreValid(item) {
// if (vm.$refs[item]) {
// if (!vm.$refs[item].valid) {
// allValid = false;
// return false;
// }
// }
// });
// return allValid;
},
////////////////////////////////////////
// Standard object not found handler
//
handleObjectNotFound(vm) {
window.$gz.eventBus.$emit("notify-error", vm.$ay.t("ErrorAPI2010"));
// navigate backwards after small delay to show error
//(the navigate removes the toast notification immediately)
setTimeout(function() {
vm.$router.go(-1);
}, 2000);
}
};