diff options
author | Ashutosh Bishnoi <mail2bishnoi@gmail.com> | 2021-01-06 15:53:48 +0530 |
---|---|---|
committer | Ashutosh Bishnoi <mail2bishnoi@gmail.com> | 2021-01-06 15:53:48 +0530 |
commit | a87f06b4cb10014b431e0a3ea8d6ba1da5a02fc1 (patch) | |
tree | ec5312d6ba0265323ea8f424a8df167df1e52046 /modern/src/App.js | |
parent | 3fb3b5334e11c1239b5126767c4160da79d1cfe9 (diff) | |
download | trackermap-web-a87f06b4cb10014b431e0a3ea8d6ba1da5a02fc1.tar.gz trackermap-web-a87f06b4cb10014b431e0a3ea8d6ba1da5a02fc1.tar.bz2 trackermap-web-a87f06b4cb10014b431e0a3ea8d6ba1da5a02fc1.zip |
computed attribute code improvements
Diffstat (limited to 'modern/src/App.js')
-rw-r--r-- | modern/src/App.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modern/src/App.js b/modern/src/App.js index d7a65118..f5ebc148 100644 --- a/modern/src/App.js +++ b/modern/src/App.js @@ -50,8 +50,8 @@ const App = () => { <Route exact path='/settings/group/:id?' component={GroupPage} /> <Route exact path='/settings/drivers' component={DriversPage} /> <Route exact path='/settings/driver/:id?' component={DriverPage} /> - <Route exact path='/settings/attributes/computed' component={ComputedAttributesPage} /> - <Route exact path='/settings/attribute/computed/:id?' component={ComputedAttributePage} /> + <Route exact path='/settings/attributes' component={ComputedAttributesPage} /> + <Route exact path='/settings/attribute/:id?' component={ComputedAttributePage} /> <Route exact path='/admin/server' component={ServerPage} /> <Route exact path='/admin/users' component={UsersPage} /> <Route exact path='/reports/route' component={RouteReportPage} /> |