summaryrefslogtreecommitdiff
path: root/src/router
diff options
context:
space:
mode:
authorDerick Montague <derick.montague@ibm.com>2021-07-30 23:57:17 +0300
committerDerick Montague <derick.montague@ibm.com>2021-07-31 00:23:28 +0300
commit512dfb7021a6f6e2e83a9e246b84baf4a6caff7e (patch)
tree6e9322b19881bcfb4e246336921c7cfe87a177dd /src/router
parent7e2ba5432d067101e4c2931b388b4b6f07979dba (diff)
downloadwebui-vue-512dfb7021a6f6e2e83a9e246b84baf4a6caff7e.tar.xz
Resovle POST code logs missing page message
Fixed a typo in the router that resulted in the POST code logs page request returning a 404 message. This was a typo in the router.js file only. The IBM router.js file did not have this issue and the Intel has not added this UI to their build. Signed-off-by: Derick Montague <derick.montague@ibm.com> Change-Id: Icce5d756ad1ce409c77ff67fd63a7759e5f24981
Diffstat (limited to 'src/router')
-rw-r--r--src/router/routes.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/router/routes.js b/src/router/routes.js
index b01b0da6..7501073a 100644
--- a/src/router/routes.js
+++ b/src/router/routes.js
@@ -120,8 +120,8 @@ const routes = [
},
},
{
- path: '/health/post-codes-logs',
- name: 'post-codes-logs',
+ path: '/health/post-code-logs',
+ name: 'post-code-logs',
component: PostCodeLogs,
meta: {
title: i18n.t('appPageTitle.postCodeLogs'),