Skip to content

Commit

Permalink
Clear moved flag when nodes are deployed
Browse files Browse the repository at this point in the history
  • Loading branch information
knolleary committed Jun 30, 2017
1 parent 9a6cf58 commit f384051
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions editor/js/ui/deploy.js
Expand Up @@ -385,6 +385,10 @@ RED.deploy = (function() {
node.dirty = true;
node.changed = false;
}
if (node.moved) {
node.dirty = true;
node.moved = false;
}
if(node.credentials) {
delete node.credentials;
}
Expand Down

0 comments on commit f384051

Please sign in to comment.