Skip to content

Commit

Permalink
Merge pull request #1005 from DFE-Digital/release-notes-110324
Browse files Browse the repository at this point in the history
Updated operand to be && for string null check on fam a2b ref
  • Loading branch information
dneed-nimble authored Mar 11, 2024
2 parents 3b6b77a + c6b3f2e commit 24416d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<a id="@("trust-name-" + projectRow.Index)" class="govuk-link" asp-page="@link" asp-route-id="@projectRow.Item.Id">@projectRow.Item.TrustName</a>
</strong>
</div>
@if (projectRow.Item.ApplciationReference is not null || projectRow.Item.ApplciationReference != string.Empty)
@if (projectRow.Item.ApplciationReference is not null && projectRow.Item.ApplciationReference != string.Empty)
{
<div id="@("application-reference" + projectRow.Index)" class="govuk-!-margin-top-1">
<strong>Application Reference:</strong>
Expand Down

0 comments on commit 24416d1

Please sign in to comment.