diff --git a/web/extensions/core/widgetInputs.js b/web/extensions/core/widgetInputs.js index 8d81f295f..f1d4a9dd1 100644 --- a/web/extensions/core/widgetInputs.js +++ b/web/extensions/core/widgetInputs.js @@ -260,6 +260,9 @@ app.registerExtension({ onConnectOutput(slot, type, input, target_node, target_slot) { // Fires before the link is made allowing us to reject it if it isn't valid + if (input.type == "*") { + return true; + } // No widget, we cant connect if (!input.widget) {