mirror of
https://github.com/node-red/node-red.git
synced 2025-12-27 15:34:26 +01:00
Fix linting
This commit is contained in:
@@ -6536,7 +6536,7 @@ RED.view = (function() {
|
||||
node = result.node
|
||||
node["_"] = node._def._;
|
||||
|
||||
for (d in node._def.defaults) {
|
||||
for (let d in node._def.defaults) {
|
||||
if (node._def.defaults.hasOwnProperty(d) && d !== 'inputs' && d !== 'name') {
|
||||
if (nodeConfig[d] !== undefined) {
|
||||
node[d] = nodeConfig[d]
|
||||
|
||||
Reference in New Issue
Block a user