We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e99b5d4 commit 288a0d5Copy full SHA for 288a0d5
src/blocks/advanced-form/transforms.js
@@ -747,7 +747,8 @@ function applyFormIdToBlocks(rootBlock, formId) {
747
const assignIds = (block, isRoot = false) => {
748
if (block?.attributes) {
749
if (isRoot) {
750
- block.attributes.id = numericId;
+ // standard built advanced form blocks do no get their id attached here, so leaving this off
751
+ // block.attributes.id = numericId;
752
} else {
753
block.attributes.formID = stringId;
754
}
0 commit comments