On Form Preview field's modal & drag (#159)

* On Form Preview field's modal & drag

* fix typo

* remove extra code

* fix page break
This commit is contained in:
formsdev
2023-08-16 14:14:52 +05:30
committed by GitHub
parent 7e75343495
commit 11ad626a72
7 changed files with 395 additions and 199 deletions

View File

@@ -87,6 +87,7 @@
:loading="loading"
:fields="form.properties"
:theme="theme"
:admin-preview="adminPreview"
@submit="submitForm"
>
<template #submit-btn="{submitForm}">
@@ -136,7 +137,8 @@ export default {
props: {
form: { type: Object, required: true },
creating: { type: Boolean, default: false } // If true, fake form submit
creating: { type: Boolean, default: false }, // If true, fake form submit
adminPreview: { type: Boolean, default: false } // If used in FormEditorPreview
},
mixins: [FormPendingSubmissionKey],