Ensure node.outputs remains a number type

Closes #1532
This commit is contained in:
Nick O'Leary 2017-12-22 21:14:47 +00:00 committed by GitHub
parent 5f4f6e37b5
commit 915d73e6f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -882,6 +882,8 @@ RED.editor = (function() {
if (outputsChanged) {
changed = true;
}
} else {
newValue = parseInt(newValue);
}
}
if (editing_node[d] != newValue) {