From 9bae2f6615ac3366d9284aeb1c7d5bf7002112b6 Mon Sep 17 00:00:00 2001 From: Devin Cowan Date: Thu, 25 Apr 2024 13:23:57 -0400 Subject: [PATCH] disable selections --- frontend/src/App.vue | 8 ++++---- frontend/src/router/index.js | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 8922855..9e500f1 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -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" }, diff --git a/frontend/src/router/index.js b/frontend/src/router/index.js index 89bafc3..ce75503 100644 --- a/frontend/src/router/index.js +++ b/frontend/src/router/index.js @@ -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',