do not prefill optional signature

This commit is contained in:
Pete Matsyburka
2025-05-28 21:41:32 +03:00
parent 2ef8df3f0c
commit 43669bf095
2 changed files with 2 additions and 2 deletions
@@ -211,7 +211,7 @@ export default {
},
computed: {
computedPreviousValue () {
if (this.isUsePreviousValue) {
if (this.isUsePreviousValue && this.field.required === true) {
return this.previousValue
} else {
return null
@@ -414,7 +414,7 @@ export default {
}
},
computedPreviousValue () {
if (this.isUsePreviousValue) {
if (this.isUsePreviousValue && this.field.required === true) {
return this.previousValue
} else {
return null