Skip to content

Commit

Permalink
Merge pull request #16338 from mvdbeek/invocations_in_default_activities
Browse files Browse the repository at this point in the history
[23.1] Include workflow invocations in default activity
  • Loading branch information
dannon committed Jun 29, 2023
2 parents b58f582 + d1ba12b commit e5197a4
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions client/src/stores/activitySetup.ts
Expand Up @@ -49,6 +49,17 @@ export const Activities = [
tooltip: "Search and run workflows",
visible: true,
},
{
description: "Displays all workflow runs.",
icon: "fa-list",
id: "invocation",
mutable: false,
optional: true,
title: "Workflow Invocations",
tooltip: "Show all workflow runs",
to: "/workflows/invocations",
visible: true,
},
{
description: "Displays the list of available visualizations.",
icon: "chart-bar",
Expand Down Expand Up @@ -82,17 +93,6 @@ export const Activities = [
to: "/datasets/list",
visible: false,
},
{
description: "Displays all workflow invocations.",
icon: "fa-list",
id: "invocation",
mutable: false,
optional: true,
title: "Invocations",
tooltip: "Show all invocations",
to: "/workflows/invocations",
visible: false,
},
];

export function convertDropData(data: EventData): Activity | null {
Expand Down

0 comments on commit e5197a4

Please sign in to comment.