diff --git a/interface/src/components/MenuAppBar.tsx b/interface/src/components/MenuAppBar.tsx index 625d99c2a..2a3dabc24 100644 --- a/interface/src/components/MenuAppBar.tsx +++ b/interface/src/components/MenuAppBar.tsx @@ -130,7 +130,7 @@ class MenuAppBar extends React.Component { -   {authenticatedContext.me.version} +   v{authenticatedContext.me.version} @@ -142,6 +142,7 @@ class MenuAppBar extends React.Component { )} + diff --git a/interface/src/project/EMSESP.tsx b/interface/src/project/EMSESP.tsx index fcb8949fd..bc2e19971 100644 --- a/interface/src/project/EMSESP.tsx +++ b/interface/src/project/EMSESP.tsx @@ -26,9 +26,9 @@ class EMSESP extends Component { - + diff --git a/interface/src/project/ProjectMenu.tsx b/interface/src/project/ProjectMenu.tsx index 3c1a5ba57..68b687ee0 100644 --- a/interface/src/project/ProjectMenu.tsx +++ b/interface/src/project/ProjectMenu.tsx @@ -6,20 +6,18 @@ import { List, ListItem, ListItemIcon, ListItemText } from "@material-ui/core"; import SettingsIcon from '@material-ui/icons/Settings'; import SettingsRemoteIcon from "@material-ui/icons/SettingsRemote"; -// import { PROJECT_PATH } from "../api"; - class ProjectMenu extends Component { render() { const path = this.props.match.url; return ( - + - + diff --git a/interface/src/project/ProjectRouting.tsx b/interface/src/project/ProjectRouting.tsx index 6cf5a45f1..a4b157293 100644 --- a/interface/src/project/ProjectRouting.tsx +++ b/interface/src/project/ProjectRouting.tsx @@ -1,7 +1,6 @@ import React, { Component } from 'react'; import { Redirect, Switch } from 'react-router'; -import { PROJECT_PATH } from '../api'; import { AuthenticatedRoute } from '../authentication'; import EMSESP from './EMSESP'; @@ -12,17 +11,16 @@ class ProjectRouting extends Component { render() { return ( - + - { /* * The redirect below caters for the default project route and redirecting invalid paths. * The "to" property must match one of the routes above for this to work correctly. */ } - + ) }