From 487c402c102d71d6a9dbdec463b482a305d98ad4 Mon Sep 17 00:00:00 2001 From: Dominic NEED Date: Fri, 22 Mar 2024 13:48:46 +0000 Subject: [PATCH] Hiding app ref when it is null or whitespace --- .../Pages/FormAMat/FormAMatParentIndex.cshtml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dfe.PrepareConversions/Dfe.PrepareConversions/Pages/FormAMat/FormAMatParentIndex.cshtml b/Dfe.PrepareConversions/Dfe.PrepareConversions/Pages/FormAMat/FormAMatParentIndex.cshtml index e70af2f6d..05e649510 100644 --- a/Dfe.PrepareConversions/Dfe.PrepareConversions/Pages/FormAMat/FormAMatParentIndex.cshtml +++ b/Dfe.PrepareConversions/Dfe.PrepareConversions/Pages/FormAMat/FormAMatParentIndex.cshtml @@ -12,7 +12,10 @@
- Application ref: @Model.Project.ApplciationReference + @if (Model.Project.ApplciationReference != null || Model.Project.ApplciationReference != string.Empty) + { + Application ref: @Model.Project.ApplciationReference + }

@Model.Project.TrustName