Skip to content

Commit

Permalink
fix syntax error with dataset link
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeGoodall committed Nov 6, 2023
1 parent 8feaeba commit 1012125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/templates/dataset.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ <h1 class="govuk-heading-xl">{{ dataset["name"] }}</h1>
}
},
{
'html': '<a class="govuk-link" href="/entity?dataset={{dataset["dataset"]}}">' + entity_count|commanum + '<br><span class="govuk-!-font-size-14">' + (dataset["name"] if entity_count <= 1 else dataset["plural"]) +'</span></a>'
'html': '<a class="govuk-link" href="/entity?dataset=' + dataset["dataset"] + '">' + entity_count|commanum + '<br><span class="govuk-!-font-size-14">' + (dataset["name"] if entity_count <= 1 else dataset["plural"]) +'</span></a>'
},
],
[
Expand Down

0 comments on commit 1012125

Please sign in to comment.