diff --git a/ui/src/App.vue b/ui/src/App.vue index d2f2932..9421e3d 100644 --- a/ui/src/App.vue +++ b/ui/src/App.vue @@ -182,7 +182,7 @@ export default Vue.extend({ }, internal: function (): Array { return [ - { icon: "mdi-view-dashboard", name: "Dashboards", to: "DashboardList", role: "admin:dashboard:write" }, + { icon: "mdi-view-dashboard", name: "Dashboards", to: "DashboardList", role: "analyst:dashboard:read" }, { icon: "mdi-check-bold", name: "Open Tasks", to: "TaskList", count: this.$store.state.task_count }, ] }, diff --git a/ui/src/router/index.ts b/ui/src/router/index.ts index d218327..89ebaa5 100644 --- a/ui/src/router/index.ts +++ b/ui/src/router/index.ts @@ -57,7 +57,7 @@ const routes: Array = [ { path: "/", name: "Catalyst", - redirect: { name: "Dashboard" }, + redirect: { name: "Home" }, }, {