diff --git a/web/extensions/core/widgetInputs.js b/web/extensions/core/widgetInputs.js index c2c7c9f55..f5e77691c 100644 --- a/web/extensions/core/widgetInputs.js +++ b/web/extensions/core/widgetInputs.js @@ -9,6 +9,7 @@ function isConvertableWidget(widget, config) { } function hideWidget(node, widget, suffix = "") { + if (widget.type.includes(CONVERTED_TYPE)) { return; } // already hidden, don't do it again widget.origType = widget.type; widget.origComputeSize = widget.computeSize; widget.origSerializeValue = widget.serializeValue;