Fix linting error

pull/1/head
ioedeveloper 5 years ago
parent 5898882082
commit 1be97de750
  1. 2
      src/app/ui/TreeView.js

@ -99,7 +99,7 @@ class TreeView {
if (self.isExpanded(keyPath)) {
if (!self.expandPath.includes(keyPath)) self.expandPath.push(keyPath)
} else {
self.expandPath = self.expandPath.filter(path => path != keyPath)
self.expandPath = self.expandPath.filter(path => path !== keyPath)
}
}
label.oncontextmenu = function (event) {

Loading…
Cancel
Save