don't try to rehide defaultInput widget

This commit is contained in:
Chris 2023-09-11 16:01:03 +10:00
parent 27428d2cb7
commit c8590fbe09

View File

@ -158,10 +158,10 @@ app.registerExtension({
if (this.inputs) {
for (const input of this.inputs) {
if (input.widget && !input.widget.config[1]?.forceInput && !input.widget.config[1]?.defaultInput) {
if (input.widget && !input.widget.config[1]?.forceInput) {
const w = this.widgets.find((w) => w.name === input.widget.name);
if (w) {
hideWidget(this, w);
if (!input.widget.config[1]?.defaultInput) hideWidget(this, w);
} else {
convertToWidget(this, input)
}