Skip to content

Commit 39f1392

Browse files
committed
Hide navigation links that haven't been built out yet
1 parent 81bd67c commit 39f1392

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

resources/scripts/routers/ServerRouter.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ const ServerRouter = ({ match, location }: RouteComponentProps<{ id: string }>)
3737
<NavLink to={`${match.url}`} exact>Console</NavLink>
3838
<NavLink to={`${match.url}/files`}>File Manager</NavLink>
3939
<NavLink to={`${match.url}/databases`}>Databases</NavLink>
40-
<NavLink to={`${match.url}/users`}>User Management</NavLink>
41-
<NavLink to={`${match.url}/schedules`}>Schedules</NavLink>
40+
{/* <NavLink to={`${match.url}/users`}>User Management</NavLink> */}
41+
{/* <NavLink to={`${match.url}/schedules`}>Schedules</NavLink> */}
4242
<NavLink to={`${match.url}/settings`}>Settings</NavLink>
4343
</div>
4444
</div>
@@ -67,8 +67,8 @@ const ServerRouter = ({ match, location }: RouteComponentProps<{ id: string }>)
6767
exact
6868
/>
6969
<Route path={`${match.path}/databases`} component={DatabasesContainer} exact/>
70-
<Route path={`${match.path}/users`} component={UsersContainer} exact/>
71-
<Route path={`${match.path}/schedules`} component={ScheduleContainer} exact/>
70+
{/* <Route path={`${match.path}/users`} component={UsersContainer} exact/> */}
71+
{/* <Route path={`${match.path}/schedules`} component={ScheduleContainer} exact/> */}
7272
<Route path={`${match.path}/settings`} component={SettingsContainer} exact/>
7373
</Switch>
7474
</React.Fragment>

0 commit comments

Comments
 (0)