Skip to content

Commit

Permalink
Merge pull request galaxyproject#17043 from ahmedhamidawan/open_histo…
Browse files Browse the repository at this point in the history
…ry_storage_in_analysis

Open `HistoryStorageOverview` in center panel from `HistoryPanel`
  • Loading branch information
davelopez authored Nov 17, 2023
2 parents 8806d60 + e5ce95d commit 257c2bb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ onMounted(() => {
});
function onDashboard() {
router.push({ name: "HistoryOverview", params: { historyId: props.history.id } });
router.push({ name: "HistoryOverviewInAnalysis", params: { historyId: props.history.id } });
}
function setFilter(filter: string) {
Expand Down
7 changes: 7 additions & 0 deletions client/src/entry/analysis/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ import HistoryArchive from "@/components/History/Archiving/HistoryArchive.vue";
import HistoryArchiveWizard from "@/components/History/Archiving/HistoryArchiveWizard.vue";
import NotificationsList from "@/components/Notifications/NotificationsList.vue";
import Sharing from "@/components/Sharing/SharingPage.vue";
import HistoryStorageOverview from "@/components/User/DiskUsage/Visualizations/HistoryStorageOverview.vue";
import WorkflowPublished from "@/components/Workflow/Published/WorkflowPublished.vue";

Vue.use(VueRouter);
Expand Down Expand Up @@ -366,6 +367,12 @@ export function getRouter(Galaxy) {
published: route.params.actionId == "list_published" ? true : false,
}),
},
{
path: "storage/history/:historyId",
name: "HistoryOverviewInAnalysis",
component: HistoryStorageOverview,
props: true,
},
{
path: "tours",
component: TourList,
Expand Down

0 comments on commit 257c2bb

Please sign in to comment.