mirror of https://github.com/node-red/node-red.git
Merge pull request #2532 from martinLim45/master
Set flow.disabled when disabled property is falsepull/2540/head
commit
54dbdde9cb
|
|
@ -553,7 +553,7 @@ function getFlow(id) {
|
|||
if (flow.label) {
|
||||
result.label = flow.label;
|
||||
}
|
||||
if (flow.disabled) {
|
||||
if (flow.hasOwnProperty('disabled')) {
|
||||
result.disabled = flow.disabled;
|
||||
}
|
||||
if (flow.hasOwnProperty('info')) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue