fix anonymous checkboxes form

pull/105/head 1.1.1
Alex Turchyn 2 years ago
parent 9cc85595e3
commit 1daee8214c

@ -195,6 +195,13 @@
> >
<template v-if="isAnonymousChecboxes"> <template v-if="isAnonymousChecboxes">
Complete hightlighted checkboxes and click <span class="font-semibold">{{ stepFields.length === currentStep + 1 ? 'submit' : 'next' }}</span>. Complete hightlighted checkboxes and click <span class="font-semibold">{{ stepFields.length === currentStep + 1 ? 'submit' : 'next' }}</span>.
<input
v-for="field in currentStepFields"
:key="field.uuid"
type="hidden"
:name="`values[${field.uuid}]`"
:value="!!values[field.uuid]"
>
</template> </template>
<template v-else> <template v-else>
<div <div

Loading…
Cancel
Save