mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Handle other error types in Manage Palette view
We still get [object Object] appearing in the palette manager sometimes. This fix nails down another cause - where the err property has a 'code' but no 'message' property. This happens with the type_already_registered error
This commit is contained in:
parent
efdf689c31
commit
4ef7240598
@ -264,6 +264,8 @@ RED.palette.editor = (function() {
|
||||
var errMessage = set.err;
|
||||
if (set.err.message) {
|
||||
errMessage = set.err.message;
|
||||
} else if (set.err.code) {
|
||||
errMessage = set.err.code;
|
||||
}
|
||||
$("<li>").text(errMessage).appendTo(nodeEntry.errorList);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user