From ff49010ff8a5a8b9dc3d93943f6270c00f2a6174 Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Thu, 9 May 2024 12:45:51 +0200 Subject: [PATCH] Fix switching between nested collection elements Fixes https://github.com/galaxyproject/galaxy/issues/18114 --- .../src/components/History/CurrentCollection/CollectionPanel.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/components/History/CurrentCollection/CollectionPanel.vue b/client/src/components/History/CurrentCollection/CollectionPanel.vue index 10c830ca460..9ace9e6ba5d 100644 --- a/client/src/components/History/CurrentCollection/CollectionPanel.vue +++ b/client/src/components/History/CurrentCollection/CollectionPanel.vue @@ -87,6 +87,7 @@ async function onViewDatasetCollectionElement(element: DCESummary) { if (!isCollectionElement(element)) { return; } + offset.value = 0; const collection: SubCollection = { ...element.object, name: element.element_identifier,