@jbrowse/web-core 2.14.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.
@@ -309,6 +309,7 @@ function BaseWebSession({ pluginManager, assemblyConfigSchema, }) {
309
309
  return [
310
310
  {
311
311
  label: 'About track',
312
+ priority: 1002,
312
313
  onClick: () => {
313
314
  self.queueDialog(handleClose => [
314
315
  AboutDialog,
@@ -319,6 +320,7 @@ function BaseWebSession({ pluginManager, assemblyConfigSchema, }) {
319
320
  },
320
321
  {
321
322
  label: 'Settings',
323
+ priority: 1001,
322
324
  disabled: !canEdit,
323
325
  onClick: () => {
324
326
  self.editTrackConfiguration(config);
@@ -327,12 +329,14 @@ function BaseWebSession({ pluginManager, assemblyConfigSchema, }) {
327
329
  },
328
330
  {
329
331
  label: 'Delete track',
332
+ priority: 1000,
330
333
  disabled: !canEdit || isRefSeq,
331
334
  onClick: () => self.deleteTrackConf(config),
332
335
  icon: Delete_1.default,
333
336
  },
334
337
  {
335
338
  label: 'Copy track',
339
+ priority: 999,
336
340
  disabled: isRefSeq,
337
341
  onClick: () => {
338
342
  const snap = (0, clone_1.default)((0, mobx_state_tree_1.getSnapshot)(config));