This commit is contained in:
2020-06-22 21:57:38 +00:00
parent f2eef073f8
commit c6fffcf1c9
4 changed files with 109 additions and 157 deletions

View File

@@ -139,7 +139,6 @@ export default {
//
required(vm, ref) {
if (vm.formState.loading) {
// console.log("gzform:required rule - bailing due to loading", ref);
return true;
}
@@ -736,8 +735,7 @@ export default {
setFormState(newState) {
//this returns a promise so any function that needs to wait for this can utilize that
// if (newState.valid != null && newState.valid == false) {
// console.trace();
// console.log(newState);
// console.trace(newState);
// // debugger;
// }
return Vue.nextTick(function() {
@@ -758,7 +756,6 @@ export default {
}
if (newState.ready != null) {
console.log("gzform setting newstate ready to ", newState.ready);
newState.vm.formState.ready = newState.ready;
}
});