fix builder save

This commit is contained in:
Pete Matsyburka
2026-03-16 16:59:45 +02:00
parent ac01b7129d
commit 8dc2ebfbe0
+4 -2
View File
@@ -3006,10 +3006,11 @@ export default {
this.save()
},
rebuildVariablesSchema ({ disable = true } = {}) {
const parsed = {}
const dynamicDocumentRef = this.documentRefs.find((e) => e.isDynamic)
if (dynamicDocumentRef) {
const parsed = {}
this.documentRefs.forEach((ref) => {
if (ref.isDynamic) {
ref.updateVariablesSchema()
@@ -3029,5 +3030,6 @@ export default {
}
}
}
}
}
</script>