@jbrowse/plugin-sv-inspector 3.1.0 → 3.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -186,7 +186,9 @@ function SvInspectorViewF(pluginManager) {
186
186
  }
187
187
  const { assemblyName, generatedTrackConf } = data;
188
188
  const { circularView } = self;
189
- circularView.tracks.forEach(t => circularView.hideTrack(t.configuration.trackId));
189
+ for (const t of circularView.tracks) {
190
+ circularView.hideTrack(t.configuration.trackId);
191
+ }
190
192
  if (assemblyName) {
191
193
  circularView.addTrackConf(generatedTrackConf, {
192
194
  assemblyName,
@@ -181,7 +181,9 @@ function SvInspectorViewF(pluginManager) {
181
181
  }
182
182
  const { assemblyName, generatedTrackConf } = data;
183
183
  const { circularView } = self;
184
- circularView.tracks.forEach(t => circularView.hideTrack(t.configuration.trackId));
184
+ for (const t of circularView.tracks) {
185
+ circularView.hideTrack(t.configuration.trackId);
186
+ }
185
187
  if (assemblyName) {
186
188
  circularView.addTrackConf(generatedTrackConf, {
187
189
  assemblyName,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jbrowse/plugin-sv-inspector",
3
- "version": "3.1.0",
3
+ "version": "3.3.0",
4
4
  "description": "JBrowse 2 SV inspector view",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -36,12 +36,12 @@
36
36
  "clean": "rimraf dist esm *.tsbuildinfo"
37
37
  },
38
38
  "dependencies": {
39
- "@jbrowse/core": "^3.1.0",
40
- "@jbrowse/plugin-circular-view": "^3.1.0",
41
- "@jbrowse/plugin-spreadsheet-view": "^3.1.0",
42
- "@jbrowse/sv-core": "^3.1.0",
43
- "@mui/icons-material": "^6.0.0",
44
- "@mui/material": "^6.0.0",
39
+ "@jbrowse/core": "^3.3.0",
40
+ "@jbrowse/plugin-circular-view": "^3.3.0",
41
+ "@jbrowse/plugin-spreadsheet-view": "^3.3.0",
42
+ "@jbrowse/sv-core": "^3.3.0",
43
+ "@mui/icons-material": "^7.0.0",
44
+ "@mui/material": "^7.0.0",
45
45
  "mobx": "^6.0.0",
46
46
  "mobx-react": "^9.0.0",
47
47
  "mobx-state-tree": "^5.0.0",
@@ -57,5 +57,5 @@
57
57
  "publishConfig": {
58
58
  "access": "public"
59
59
  },
60
- "gitHead": "91492049ddea0aed90eb24d3c066c2d9f5a6b189"
60
+ "gitHead": "0bb64d8cc7ecdd167515308b31eec3d9acbc59e4"
61
61
  }