prefill signature

This commit is contained in:
Pete Matsyburka
2024-06-11 18:19:21 +03:00
parent 92da790e77
commit 2389c3fc40
9 changed files with 80 additions and 17 deletions
+6 -1
View File
@@ -321,7 +321,7 @@
:key="currentField.uuid"
v-model="values[currentField.uuid]"
:field="currentField"
:previous-value="previousSignatureValueFor(currentField)"
:previous-value="previousSignatureValueFor(currentField) || previousSignatureValue"
:with-typed-signature="withTypedSignature"
:attachments-index="attachmentsIndex"
:button-text="buttonText"
@@ -609,6 +609,11 @@ export default {
required: false,
default: ''
},
previousSignatureValue: {
type: String,
required: false,
default: ''
},
allowToSkip: {
type: Boolean,
required: false,