mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
fix jshint failure
This commit is contained in:
parent
a03edf3d58
commit
32692dce07
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user