mirror of
https://github.com/node-red/node-red
synced 2024-11-21 15:43:16 +00:00
Don't assume node has defaults when exporting icon property
This commit is contained in:
parent
ead841d844
commit
a8fc5b01f3
@ -19,7 +19,7 @@ Node Fixes
|
||||
- Add HEAD to list of methods with no body in http req node #1598
|
||||
- Do not include payload in GET requests Fixes #1598
|
||||
- Update sort/batch docs Fixes #1601
|
||||
|
||||
- Don't assume node has defaults when exporting icon property
|
||||
|
||||
|
||||
#### 0.18: Milestone Release
|
||||
|
@ -501,7 +501,7 @@ RED.nodes = (function() {
|
||||
if (n.outputs > 0 && n.outputLabels && !/^\s*$/.test(n.outputLabels.join(""))) {
|
||||
node.outputLabels = n.outputLabels.slice();
|
||||
}
|
||||
if (!n._def.defaults.hasOwnProperty("icon") && n.icon) {
|
||||
if ((!n._def.defaults || !n._def.defaults.hasOwnProperty("icon")) && n.icon) {
|
||||
var defIcon = RED.utils.getDefaultNodeIcon(n._def, n);
|
||||
if (n.icon !== defIcon.module+"/"+defIcon.file) {
|
||||
node.icon = n.icon;
|
||||
|
Loading…
Reference in New Issue
Block a user