do not submit invalid field value

pull/381/head
Pete Matsyburka 1 year ago
parent c3a933d87d
commit 350c4b1c2a

@ -1107,6 +1107,10 @@ export default {
const currentFieldUuids = this.currentStepFields.map((f) => f.uuid)
const currentFieldType = this.currentField.type
if (!formData && !this.$refs.form.checkValidity()) {
return
}
if (this.dryRun) {
currentFieldUuids.forEach((fieldUuid) => {
this.submittedValues[fieldUuid] = this.values[fieldUuid]

Loading…
Cancel
Save