mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Merge branch 'master' of github.com:node-red/node-red
This commit is contained in:
commit
f9e6bccd46
@ -426,8 +426,13 @@ RED.editor = (function() {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Set the select value
|
const optionCount = select.find("option").length
|
||||||
select.val(nodeValue);
|
if (optionCount === 1) {
|
||||||
|
// We only have the 'add new...' option
|
||||||
|
select.val('_ADD_')
|
||||||
|
} else {
|
||||||
|
select.val(nodeValue);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -103,7 +103,7 @@ RED.sidebar.info.outliner = (function() {
|
|||||||
evt.stopPropagation();
|
evt.stopPropagation();
|
||||||
RED.search.show("type:subflow:"+n.id);
|
RED.search.show("type:subflow:"+n.id);
|
||||||
})
|
})
|
||||||
// RED.popover.tooltip(userCountBadge,function() { return RED._('editor.nodesUse',{count:n.users.length})});
|
RED.popover.tooltip(subflowInstanceBadge,function() { return RED._('subflow.subflowInstances',{count:n.instances.length})});
|
||||||
}
|
}
|
||||||
if (n._def.category === "config" && n.type !== "group") {
|
if (n._def.category === "config" && n.type !== "group") {
|
||||||
var userCountBadge = $('<button type="button" class="red-ui-info-outline-item-control-users red-ui-button red-ui-button-small"><i class="fa fa-toggle-right"></i></button>').text(n.users.length).appendTo(controls).on("click",function(evt) {
|
var userCountBadge = $('<button type="button" class="red-ui-info-outline-item-control-users red-ui-button red-ui-button-small"><i class="fa fa-toggle-right"></i></button>').text(n.users.length).appendTo(controls).on("click",function(evt) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user