Skip to content

Commit

Permalink
remove unneeded child property
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeGoodall committed Jan 9, 2024
1 parent b2f0666 commit 7199014
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions application/templates/layouts/layout--guidance.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,37 +67,31 @@ <h1 class="govuk-heading-xl">{{ pageData.pageTitle }}</h1>
{
'text': "Article 4 direction data",
'href': sectionPath + 'specifications/article-4-direction',
'child': true,
'current': true if pageData.name == 'article-4-direction' else false,
},
{
'text': "Brownfield land data",
'href': 'https://www.gov.uk/government/publications/brownfield-land-registers-data-standard/publish-your-brownfield-land-data',
'child': true,
'current': false,
},
{
'text': "Conservation area data",
'href': sectionPath + 'specifications/conservation-area',
'child': true,
'current': true if pageData.name == 'conservation-area' else false,
},
{
'text': "Developer contributions data",
'href': 'https://www.gov.uk/guidance/publish-your-developer-contributions-data',
'child': true,
'current': false,
},
{
'text': "Listed building data",
'href': sectionPath + 'specifications/listed-building',
'child': true,
'current': true if pageData.name == 'listed-building' else false,
},
{
'text': "Tree preservation order data",
'href': sectionPath + 'specifications/tree-preservation-order',
'child': true,
'current': true if pageData.name == 'tree-preservation-order' else false,
}
]
Expand Down

0 comments on commit 7199014

Please sign in to comment.