fix checkbox add on missclick

This commit is contained in:
Pete Matsyburka
2024-05-05 18:18:07 +03:00
parent a0f4916d3b
commit 6d93116993
+1 -1
View File
@@ -857,7 +857,7 @@ export default {
type = this.fieldTypes[0]
}
if (type === 'checkbox' && !this.drawFieldType) {
if (type === 'checkbox' && !this.drawFieldType && (this.template.fields[this.template.fields.length - 1]?.type === 'checkbox' || area.w)) {
const previousField = [...this.template.fields].reverse().find((f) => f.type === type)
const previousArea = previousField?.areas?.[previousField.areas.length - 1]