Skip to content

Commit

Permalink
Updated operand to be && for string null check on fam a2b ref
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominic NEED authored and Dominic NEED committed Mar 11, 2024
1 parent 7f40f75 commit f876adc
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 f876adc

Please sign in to comment.