From da713068daa709f860a0d5f881eb60e503339700 Mon Sep 17 00:00:00 2001 From: Adam Driscoll Date: Wed, 13 Feb 2019 12:38:53 -0700 Subject: [PATCH] Fixes #626 (#627) --- src/client/src/app/ud-dashboard.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/client/src/app/ud-dashboard.jsx b/src/client/src/app/ud-dashboard.jsx index 8eef4891..03c5b363 100644 --- a/src/client/src/app/ud-dashboard.jsx +++ b/src/client/src/app/ud-dashboard.jsx @@ -298,6 +298,10 @@ export default class UdDashboard extends React.Component { var dynamicPages = this.state.dashboard.pages.map(function(x) { if (!x.dynamic) return null; + if (!x.url.startsWith("/")) { + x.url = "/" + x.url; + } + return ( )} />