@jbrowse/web-core 2.15.0 → 2.15.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.
@@ -280,6 +280,7 @@ export function BaseWebSession({ pluginManager, assemblyConfigSchema, }) {
280
280
  return [
281
281
  {
282
282
  label: 'About track',
283
+ priority: 1002,
283
284
  onClick: () => {
284
285
  self.queueDialog(handleClose => [
285
286
  AboutDialog,
@@ -290,6 +291,7 @@ export function BaseWebSession({ pluginManager, assemblyConfigSchema, }) {
290
291
  },
291
292
  {
292
293
  label: 'Settings',
294
+ priority: 1001,
293
295
  disabled: !canEdit,
294
296
  onClick: () => {
295
297
  self.editTrackConfiguration(config);
@@ -298,12 +300,14 @@ export function BaseWebSession({ pluginManager, assemblyConfigSchema, }) {
298
300
  },
299
301
  {
300
302
  label: 'Delete track',
303
+ priority: 1000,
301
304
  disabled: !canEdit || isRefSeq,
302
305
  onClick: () => self.deleteTrackConf(config),
303
306
  icon: DeleteIcon,
304
307
  },
305
308
  {
306
309
  label: 'Copy track',
310
+ priority: 999,
307
311
  disabled: isRefSeq,
308
312
  onClick: () => {
309
313
  const snap = clone(getSnapshot(config));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jbrowse/web-core",
3
- "version": "2.15.0",
3
+ "version": "2.15.1",
4
4
  "description": "JBrowse 2 code shared between web-app type products",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -42,8 +42,8 @@
42
42
  },
43
43
  "dependencies": {
44
44
  "@babel/runtime": "^7.16.3",
45
- "@jbrowse/app-core": "^2.15.0",
46
- "@jbrowse/product-core": "^2.15.0",
45
+ "@jbrowse/app-core": "^2.15.1",
46
+ "@jbrowse/product-core": "^2.15.1",
47
47
  "@mui/icons-material": "^6.0.0",
48
48
  "@mui/material": "^6.0.0",
49
49
  "clone": "^2.0.0",
@@ -62,5 +62,5 @@
62
62
  "publishConfig": {
63
63
  "access": "public"
64
64
  },
65
- "gitHead": "87eeb1fbf8311dbf88d5e75b5a265f03beffdda8"
65
+ "gitHead": "86ed70124fc5a0b1161266659d1ca9f8796bf3fe"
66
66
  }