Skip to content

Commit

Permalink
Merge pull request #4765 from FlowFuse/fix-applications-nested-route-…
Browse files Browse the repository at this point in the history
…rendering

Fix applications page nested routes
  • Loading branch information
cstns authored Nov 13, 2024
2 parents 9e7b1e4 + c144a18 commit 073d514
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions frontend/src/pages/team/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,19 @@ export default [
},
children: [
{
name: 'Applications',
path: 'applications',
component: TeamApplications,
meta: {
title: 'Team - Applications'
},
children: [
{
path: 'create',
name: 'Applications',
path: '',
component: TeamApplications,
meta: {
title: 'Team - Applications'
}
},
{
name: 'CreateTeamApplication',
path: 'create',
component: CreateApplication,
meta: {
title: 'Team - Create Application',
Expand Down

0 comments on commit 073d514

Please sign in to comment.