We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4956b5d commit 50cea9bCopy full SHA for 50cea9b
2 files changed
generator/templates/Crud/src/components/Resource.vue
@@ -160,7 +160,7 @@ export default {
160
resolve();
161
})
162
.catch((error) => {
163
- this.errors = error.response.data.errors;
+ this.$refs.createForm.validate();
164
reject(error);
165
});
166
} else {
@@ -180,7 +180,7 @@ export default {
180
this.updateRequest(this.updateForm.values)
181
.then(() => resolve())
182
183
184
185
186
generator/templates/Crud/src/components/VuetifyResourceBaseForm.vue
@@ -68,5 +68,8 @@ export default {
68
}, 500);
69
},
70
71
+ beforeDestroy() {
72
+ clearTimeout(this.emitTimeout);
73
+ },
74
};
75
</script>
0 commit comments