Merge branch 'dev' into pr_2033

This commit is contained in:
Nick O'Leary 2019-01-22 16:13:26 +00:00
commit 85efb48c1f
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
2 changed files with 6 additions and 1 deletions

View File

@ -326,6 +326,7 @@ RED.sidebar.versionControl = (function() {
.appendTo(bg)
.click(function(evt) {
evt.preventDefault();
evt.stopPropagation();
refresh(true);
});
RED.popover.tooltip(refreshButton,RED._("sidebar.project.versionControl.refreshChanges"));
@ -559,6 +560,7 @@ RED.sidebar.versionControl = (function() {
.appendTo(bg)
.click(function(evt) {
evt.preventDefault();
evt.stopPropagation();
refresh(true,true);
})
RED.popover.tooltip(refreshButton,RED._("sidebar.project.versionControl.refreshCommitHistory"))

View File

@ -35,7 +35,10 @@ function Node(n) {
this._alias = n._alias;
}
if (n._flow) {
this._flow = n._flow;
// Make this a non-enumerable property as it may cause
// circular references. Any existing code that tries to JSON serialise
// the object (such as dashboard) will not like circular refs
Object.defineProperty(this,'_flow', {value: n._flow, })
}
this.updateWires(n.wires);
}