Skip to content

Commit

Permalink
Remove "base" from file name
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed Nov 11, 2024
1 parent 19f7fb0 commit 92f4938
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions arches_lingo/src/arches_lingo/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ export const routes = [
{
path: "/concept/:id",
name: "concept",
component: () => import("@/arches_lingo/pages/ConceptOrSchemeBase.vue"),
component: () =>
import("@/arches_lingo/pages/ConceptOrSchemeSplitter.vue"),
meta: {
shouldShowNavigation: true,
requiresAuthentication: true,
Expand All @@ -47,7 +48,8 @@ export const routes = [
{
path: "/scheme/:id",
name: "scheme",
component: () => import("@/arches_lingo/pages/ConceptOrSchemeBase.vue"),
component: () =>
import("@/arches_lingo/pages/ConceptOrSchemeSplitter.vue"),
meta: {
shouldShowNavigation: true,
requiresAuthentication: true,
Expand Down

0 comments on commit 92f4938

Please sign in to comment.