@jbrowse/web-core 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.
|
@@ -220,9 +220,9 @@ function BaseWebSession({ pluginManager, assemblyConfigSchema, }) {
|
|
|
220
220
|
const snap = structuredClone((0, mobx_state_tree_1.getSnapshot)(config));
|
|
221
221
|
const now = Date.now();
|
|
222
222
|
snap.trackId += `-${now}`;
|
|
223
|
-
snap.displays
|
|
223
|
+
for (const display of snap.displays) {
|
|
224
224
|
display.displayId += `-${now}`;
|
|
225
|
-
}
|
|
225
|
+
}
|
|
226
226
|
if (!self.adminMode) {
|
|
227
227
|
snap.trackId += '-sessionTrack';
|
|
228
228
|
snap.category = undefined;
|