Skip to content

Commit

Permalink
fix(links): add routes for */content urls
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Steffens <[email protected]>
  • Loading branch information
Florian Steffens committed Aug 31, 2023
1 parent 681dd41 commit 4762d4d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ export default new Router({
component: MainDashboardWrapper,
name: 'table',
},
{
path: '/table/:tableId/content',
component: MainDashboardWrapper,
name: 'table',
},
{
path: '/table/:tableId/row/:rowId',
component: MainDashboardWrapper,
Expand All @@ -30,6 +35,11 @@ export default new Router({
component: MainViewWrapper,
name: 'view',
},
{
path: '/view/:viewId/content',
component: MainViewWrapper,
name: 'view',
},
{
path: '/view/:viewId/row/:rowId',
component: MainViewWrapper,
Expand Down

0 comments on commit 4762d4d

Please sign in to comment.