We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 635b6cf commit f9ba7b8Copy full SHA for f9ba7b8
blocks/form/components/review/review.js
@@ -59,14 +59,15 @@ function replaceInputs(element, model) {
59
}
60
61
function render(element, fd, model) {
62
- element.innerHTML = '';
63
if (!model) return;
64
65
const { form } = model;
66
const { properties } = fd;
67
68
if (!properties?.panelNames) return;
69
+ element.innerHTML = '';
70
+
71
const panelModels = [];
72
form.visit((field) => {
73
if (properties.panelNames.includes(field.name)) {
0 commit comments