Fix editor-client package.json

The main entry pointed to non-existant entry.

Also fixed error when loading nodes lazily
This commit is contained in:
Ben Hardill 2021-08-06 21:16:34 +01:00
parent f1e7ec0c6b
commit 711ec39327
No known key found for this signature in database
GPG Key ID: 74DD076979ABB1E7
2 changed files with 2 additions and 2 deletions

View File

@ -14,5 +14,5 @@
"name": "Dave Conway-Jones"
}
],
"main": "./lib/index.js"
"main": "./index.js"
}

View File

@ -233,7 +233,7 @@ RED.sidebar.help = (function() {
var div = $('<div>',{class:"red-ui-node-list-item"});
var icon = RED.utils.createNodeIcon(n).appendTo(div);
var label = n.name;
if (!label && n._def.paletteLabel) {
if (!label && n._def && n._def.paletteLabel) {
try {
label = (typeof n._def.paletteLabel === "function" ? n._def.paletteLabel.call(n._def) : n._def.paletteLabel)||"";
} catch (err) {