Skip to content

Commit

Permalink
disable selections
Browse files Browse the repository at this point in the history
  • Loading branch information
devincowan committed Apr 25, 2024
1 parent aa2ed7b commit 9bae2f6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ const paths = [
attrs: { to: "/plots" },
label: "Plots",
},
{
attrs: { to: "/selections" },
label: "Selections",
},
// {
// attrs: { to: "/selections" },
// label: "Selections",
// },
// TODO: enable API page when it is ready
// {
// attrs: { to: "/api" },
Expand Down
10 changes: 5 additions & 5 deletions frontend/src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ const router = createRouter({
name: 'api',
component: ApiView
},
{
path: '/selections',
name: 'selections',
component: () => import('../views/SelectionsView.vue')
},
// {
// path: '/selections',
// name: 'selections',
// component: () => import('../views/SelectionsView.vue')
// },
{
path: '/plots',
name: 'plots',
Expand Down

0 comments on commit 9bae2f6

Please sign in to comment.