aboutsummaryrefslogtreecommitdiff
path: root/packages/client/src/router
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2021-06-11 22:18:45 +0200
committerHampusM <hampus@hampusmat.com>2021-06-11 22:18:45 +0200
commit88dca239e50d51acb5e12174c6bd0df8c4bc3b7b (patch)
tree4233094a0f83eee3f98033957b7d0beac35b2441 /packages/client/src/router
parentb2e0d3154336946336edee4e32b57a467e255050 (diff)
Implemented title and favicon stuff
Diffstat (limited to 'packages/client/src/router')
-rw-r--r--packages/client/src/router/index.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/client/src/router/index.js b/packages/client/src/router/index.js
index a6db1e1..ed53590 100644
--- a/packages/client/src/router/index.js
+++ b/packages/client/src/router/index.js
@@ -15,12 +15,12 @@ const routes = [
children: [
{
path: "about",
- name: "Repository About",
+ name: "About",
component: () => import("../views/RepositoryAbout")
},
{
path: "log",
- name: "Repository Log",
+ name: "Log",
component: () => import("../views/RepositoryLog")
},
{
@@ -31,7 +31,7 @@ const routes = [
},
{
path: "tree/:path*",
- name: "Tree Entry",
+ name: "Tree",
component: () => import("../views/RepositoryTree"),
props: route => ({ pathArr: route.params.path ? route.params.path : [] })
},