Skip to content

Commit

Permalink
Merge pull request #2532 from martinLim45/master
Browse files Browse the repository at this point in the history
Set flow.disabled when disabled property is false
  • Loading branch information
knolleary committed Apr 7, 2020
2 parents 572c036 + 513957e commit 54dbdde
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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')) {
Expand Down

0 comments on commit 54dbdde

Please sign in to comment.