|
|
|
@ -257,6 +257,20 @@
|
|
|
|
<span class="label-text">{{ t('with_logo') }}</span>
|
|
|
|
<span class="label-text">{{ t('with_logo') }}</span>
|
|
|
|
</label>
|
|
|
|
</label>
|
|
|
|
</li>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li
|
|
|
|
|
|
|
|
v-if="field.type == 'image'"
|
|
|
|
|
|
|
|
@click.stop
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<label class="cursor-pointer py-1.5">
|
|
|
|
|
|
|
|
<input
|
|
|
|
|
|
|
|
:checked="field.preferences?.only_with_camera != false"
|
|
|
|
|
|
|
|
type="checkbox"
|
|
|
|
|
|
|
|
class="toggle toggle-xs"
|
|
|
|
|
|
|
|
@change="[field.preferences ||= {}, field.preferences.only_with_camera = field.preferences.only_with_camera == true, save()]"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<span class="label-text">{{ t('only_with_camera') }}</span>
|
|
|
|
|
|
|
|
</label>
|
|
|
|
|
|
|
|
</li>
|
|
|
|
<li
|
|
|
|
<li
|
|
|
|
v-if="field.type == 'checkbox'"
|
|
|
|
v-if="field.type == 'checkbox'"
|
|
|
|
@click.stop
|
|
|
|
@click.stop
|
|
|
|
|