Skip to content

Commit

Permalink
Move workflow invocations to data tab
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Feb 20, 2024
1 parent f26c386 commit 5c4c778
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions client/src/entry/analysis/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ export function fetchMenu(options = {}) {
title: _l("Workflows"),
url: "/workflows/list",
},
{
title: _l("Workflow Invocations"),
url: "/workflows/invocations",
},
],
});
} else {
Expand Down Expand Up @@ -253,10 +257,6 @@ export function fetchMenu(options = {}) {
url: "/user/notifications",
});
}
userTab.menu.push({
title: _l("Workflow Invocations"),
url: "/workflows/invocations",
});
userTab.menu.push({ divider: true });
userTab.menu.push({
title: _l("Preferences"),
Expand Down
2 changes: 1 addition & 1 deletion client/src/utils/navigation/navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ masthead:

# user menu
logout: 'Sign Out'
invocations: 'Workflow Invocations'
preferences: 'Preferences'

# data menu
libraries: 'Data Libraries'
histories: 'Histories'
invocations: 'Workflow Invocations'
pages: 'Pages'
workflows: 'Workflows'

Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/selenium/navigates_galaxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1204,7 +1204,7 @@ def navigate_to_user_preferences(self):

def navigate_to_invocations(self):
self.home()
self.click_masthead_user()
self.click_masthead_data()
self.components.masthead.invocations.wait_for_and_click()

def navigate_to_pages(self):
Expand Down

0 comments on commit 5c4c778

Please sign in to comment.