Skip to content

Commit 288a0d5

Browse files
fixing issue with form transforms
1 parent e99b5d4 commit 288a0d5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/blocks/advanced-form/transforms.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,8 @@ function applyFormIdToBlocks(rootBlock, formId) {
747747
const assignIds = (block, isRoot = false) => {
748748
if (block?.attributes) {
749749
if (isRoot) {
750-
block.attributes.id = numericId;
750+
// standard built advanced form blocks do no get their id attached here, so leaving this off
751+
// block.attributes.id = numericId;
751752
} else {
752753
block.attributes.formID = stringId;
753754
}

0 commit comments

Comments
 (0)