Commit 1be97de7 authored by ioedeveloper's avatar ioedeveloper

Fix linting error

parent 58988820
...@@ -99,7 +99,7 @@ class TreeView { ...@@ -99,7 +99,7 @@ class TreeView {
if (self.isExpanded(keyPath)) { if (self.isExpanded(keyPath)) {
if (!self.expandPath.includes(keyPath)) self.expandPath.push(keyPath) if (!self.expandPath.includes(keyPath)) self.expandPath.push(keyPath)
} else { } else {
self.expandPath = self.expandPath.filter(path => path != keyPath) self.expandPath = self.expandPath.filter(path => path !== keyPath)
} }
} }
label.oncontextmenu = function (event) { label.oncontextmenu = function (event) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment