Ensure label is shown in help tree

This commit is contained in:
Steve-Mcl 2022-01-25 16:30:30 +00:00
parent f67aafa8d3
commit faf31be0dc
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ RED.sidebar.help = (function() {
}
}
label = label || n.type;
$('<div>',{class:"red-ui-node-label"}).text(n.name||n.type).appendTo(icon);
$('<div>',{class:"red-ui-node-label"}).text(label).appendTo(icon);
return div;
}