fix jshint failure

This commit is contained in:
Hiroyasu Nishiyama 2021-01-30 09:43:01 +09:00
parent a03edf3d58
commit 32692dce07
1 changed files with 2 additions and 1 deletions

View File

@ -175,7 +175,8 @@ RED.sidebar.info.outliner = (function() {
if (targetState === undefined) {
targetState = !n.d;
}
if (!!n.d !== targetState) {
var state = !!n.d;
if (state !== targetState) {
var historyEvent = {
t: "edit",
node: n,