Skip to content

Commit

Permalink
T1
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Oct 26, 2023
1 parent e510405 commit 734c2a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/linear-genome-view/src/LinearGenomeView/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,8 @@ export function stateModelFactory(pluginManager: PluginManager) {
'LinearGenomeViewPlugin',
'trackLabels',
])
return self.trackLabels ?? sessionSetting
const localStorageTrackLabels = localStorageGetItem('lgv-trackLabels')
return self.trackLabels ?? localStorageTrackLabels ?? sessionSetting
},
/**
* #getter
Expand Down

0 comments on commit 734c2a6

Please sign in to comment.