@jbrowse/plugin-spreadsheet-view 2.15.4 → 2.16.1

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.
@@ -136,7 +136,7 @@ const model = mobx_state_tree_1.types
136
136
  * #action
137
137
  */
138
138
  setHeight(newHeight) {
139
- self.height = newHeight > minHeight ? newHeight : minHeight;
139
+ self.height = Math.max(newHeight, minHeight);
140
140
  return self.height;
141
141
  },
142
142
  /**
@@ -131,7 +131,7 @@ const model = types
131
131
  * #action
132
132
  */
133
133
  setHeight(newHeight) {
134
- self.height = newHeight > minHeight ? newHeight : minHeight;
134
+ self.height = Math.max(newHeight, minHeight);
135
135
  return self.height;
136
136
  },
137
137
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jbrowse/plugin-spreadsheet-view",
3
- "version": "2.15.4",
3
+ "version": "2.16.1",
4
4
  "description": "JBrowse 2 spreadsheet view",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -38,7 +38,7 @@
38
38
  "dependencies": {
39
39
  "@gmod/bgzf-filehandle": "^1.4.3",
40
40
  "@gmod/vcf": "^5.0.9",
41
- "@jbrowse/plugin-variants": "^2.15.4",
41
+ "@jbrowse/plugin-variants": "^2.16.1",
42
42
  "@mui/icons-material": "^6.0.0",
43
43
  "csvtojson": "^2.0.10"
44
44
  },
@@ -60,5 +60,5 @@
60
60
  "publishConfig": {
61
61
  "access": "public"
62
62
  },
63
- "gitHead": "686b4ad9016b3586e8230180f7adb44c238ba4fb"
63
+ "gitHead": "c6a658d2344989895543f0456b1cf7dd3b937769"
64
64
  }