|
Lines 38-43
Link Here
|
| 38 |
v-if="input.type == 'Text'" |
38 |
v-if="input.type == 'Text'" |
| 39 |
:id="`confirmation_input_${input.id}`" |
39 |
:id="`confirmation_input_${input.id}`" |
| 40 |
v-model="input.value" |
40 |
v-model="input.value" |
|
|
41 |
:required="input.required" |
| 41 |
/> |
42 |
/> |
| 42 |
</div> |
43 |
</div> |
| 43 |
</div> |
44 |
</div> |
|
Lines 87-93
export default {
Link Here
|
| 87 |
if ( |
88 |
if ( |
| 88 |
this.confirmation.inputs && |
89 |
this.confirmation.inputs && |
| 89 |
this.confirmation.inputs.filter( |
90 |
this.confirmation.inputs.filter( |
| 90 |
input => input.required && input.value == null |
91 |
input => input.required && !input.value |
| 91 |
).length |
92 |
).length |
| 92 |
) { |
93 |
) { |
| 93 |
this.$refs.confirmationform.reportValidity() |
94 |
this.$refs.confirmationform.reportValidity() |
| 94 |
- |
|
|