Skip to content

Commit

Permalink
Merge pull request #1011 from DFE-Digital/hotfix/a2b-ref-hidden-if-null
Browse files Browse the repository at this point in the history
Hotfix/a2b ref hidden if null
  • Loading branch information
dneed-nimble authored Mar 22, 2024
2 parents 9674cef + 40de8f7 commit dd6b94c
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@

<div class="govuk-grid-row">
<div class="govuk-grid-column-full">
<span class="govuk-caption-xl">Application ref: @Model.Project.ApplciationReference</span>
@if (Model.Project.ApplciationReference != null || Model.Project.ApplciationReference != string.Empty)
{
<span class="govuk-caption-xl">Application ref: @Model.Project.ApplciationReference</span>
}
<h1 class="govuk-heading-xl govuk-!-margin-bottom-2" data-cy="select-heading">
@Model.Project.TrustName
</h1>
Expand Down

0 comments on commit dd6b94c

Please sign in to comment.