From a25595765f274e5b1821e4562124e849209c6d9c Mon Sep 17 00:00:00 2001 From: GogoVega <92022724+GogoVega@users.noreply.github.com> Date: Thu, 19 Jun 2025 16:41:34 +0200 Subject: [PATCH] Do not check the type editors --- .../node_modules/@node-red/editor-client/src/js/ui/editor.js | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/editor.js b/packages/node_modules/@node-red/editor-client/src/js/ui/editor.js index 648c55d71..70963e389 100644 --- a/packages/node_modules/@node-red/editor-client/src/js/ui/editor.js +++ b/packages/node_modules/@node-red/editor-client/src/js/ui/editor.js @@ -2263,7 +2263,6 @@ RED.editor = (function() { function showTypeEditor(type, options) { if (customEditTypes.hasOwnProperty(type)) { - if (editStack.find((item) => Object.keys(item).length === 1 && item.type === type)) { return } if (editStack.length > 0) { options.parent = editStack[editStack.length-1].id; }