Toggling debug node enabled/disabled state should set state dirty

Fixes #1203
This commit is contained in:
Nick O'Leary 2017-04-10 16:11:01 +01:00
parent f987fa13ea
commit 62876ca377
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
1 changed files with 13 additions and 0 deletions

View File

@ -83,6 +83,19 @@
url: "debug/"+this.id+"/"+(this.active?"enable":"disable"),
type: "POST",
success: function(resp, textStatus, xhr) {
var historyEvent = {
t:'edit',
node:node,
changes:{
active: !node.active
},
dirty:node.dirty,
changed:node.changed
};
node.changed = true;
RED.nodes.dirty(true);
RED.history.push(historyEvent);
if (xhr.status == 200) {
RED.notify(node._("debug.notification.activated",{label:label}),"success");
} else if (xhr.status == 201) {