Skip to content

Commit

Permalink
Merge pull request galaxyproject#17925 from guerler/pages_activity
Browse files Browse the repository at this point in the history
Adds pages to the activity bar
  • Loading branch information
dannon authored Apr 15, 2024
2 parents 372b8d6 + 5f14aea commit 1794da6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
2 changes: 2 additions & 0 deletions client/src/components/plugins/icons.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import {
faEye,
faFile,
faFileArchive,
faFileContract,
faFileExport,
faFilter,
faFolder,
Expand Down Expand Up @@ -76,6 +77,7 @@ library.add(
faExternalLinkAlt,
faEye,
faFileArchive,
faFileContract,
faFileExport,
faFilter,
faFile,
Expand Down
16 changes: 14 additions & 2 deletions client/src/stores/activitySetup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const Activities = [
icon: "fa-laptop",
id: "interactivetools",
mutable: false,
optional: true,
optional: false,
title: "Interactive Tools",
tooltip: "Show active interactive tools",
to: "/interactivetool_entry_points/list",
Expand Down Expand Up @@ -111,7 +111,19 @@ export const Activities = [
title: "Datasets",
tooltip: "Show all datasets",
to: "/datasets/list",
visible: false,
visible: true,
},
{
anonymous: false,
description: "Display and create new Pages.",
icon: "fa-file-contract",
id: "pages",
mutable: false,
optional: true,
title: "Pages",
tooltip: "Show all pages",
to: "/pages/list",
visible: true,
},
];

Expand Down

0 comments on commit 1794da6

Please sign in to comment.