Skip to content

Commit 02c10f0

Browse files
committed
bug fix
1 parent e155f5c commit 02c10f0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

js/roi/ROISet.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ class ROISet {
5858

5959
}
6060

61-
this.isVisible = config.isVisible || true
61+
this.isVisible = undefined === config.isVisible ? true : config.isVisible
62+
6263
}
6364

6465
async getFeatures(chr, start, end) {

0 commit comments

Comments
 (0)