Skip to content

Commit

Permalink
Merge pull request #17860 from davelopez/24.0_fix_activity_bar_unreac…
Browse files Browse the repository at this point in the history
…hable

[24.0] Fix activity bar unreachable in some pages
  • Loading branch information
martenson authored Mar 28, 2024
2 parents f4115bb + b301e01 commit 7155ad7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
3 changes: 0 additions & 3 deletions client/src/entry/analysis/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ export function fetchMenu(options = {}) {
{
title: _l("Data Libraries"),
url: "/libraries",
target: "_top",
},
{
title: _l("Datasets"),
Expand Down Expand Up @@ -91,7 +90,6 @@ export function fetchMenu(options = {}) {
{
title: _l("Data Libraries"),
url: "/libraries",
target: "_top",
},
{
title: _l("Histories"),
Expand Down Expand Up @@ -123,7 +121,6 @@ export function fetchMenu(options = {}) {
url: "/admin",
tooltip: _l("Administer this Galaxy"),
cls: "admin-only",
target: "_top",
});
}

Expand Down
2 changes: 1 addition & 1 deletion client/src/entry/analysis/modules/Base.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<template>
<router-view :key="$route.fullPath" class="m-2" />
<router-view :key="$route.fullPath" />
</template>
6 changes: 3 additions & 3 deletions client/src/entry/analysis/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,6 @@ export function getRouter(Galaxy) {
base: getAppRoot(),
mode: "history",
routes: [
...AdminRoutes,
...LibraryRoutes,
...StorageDashboardRoutes,
/** Login entry route */
{
path: "/login/start",
Expand Down Expand Up @@ -171,6 +168,9 @@ export function getRouter(Galaxy) {
path: "/",
component: Analysis,
children: [
...AdminRoutes,
...LibraryRoutes,
...StorageDashboardRoutes,
{
path: "",
alias: "root",
Expand Down

0 comments on commit 7155ad7

Please sign in to comment.