summaryrefslogtreecommitdiff
path: root/src/router
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-05-05 19:45:39 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2020-05-21 16:55:29 +0300
commit6f102346cbeaff7bc2e1f6ae46a67316ca90b5cd (patch)
treee7bee4356ddea604a1d86655f72ee4376b945d51 /src/router
parent85358ed1b6d725a2090e82d82757fbd3d7dbc706 (diff)
downloadwebui-vue-6f102346cbeaff7bc2e1f6ae46a67316ca90b5cd.tar.xz
Add Event log page
Add basic event log table with the ability to sort by column (ID, Severity, Type, Date) and filter by severity. - Updated existing translation for eventLog to eventLogs Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: Ic233593cc8804d9dcefb2b5740dfac3d52899b02
Diffstat (limited to 'src/router')
-rw-r--r--src/router/index.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/router/index.js b/src/router/index.js
index fc361019..30532a5f 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -24,6 +24,14 @@ const routes = [
}
},
{
+ path: '/health/event-logs',
+ name: 'event-logs',
+ component: () => import('@/views/Health/EventLogs'),
+ meta: {
+ title: 'appPageTitle.eventLogs'
+ }
+ },
+ {
path: '/health/sensors',
name: 'sensors',
component: () => import('@/views/Health/Sensors'),