From 0b93a09cf9e667fe5e6448a569bdac67a64ae901 Mon Sep 17 00:00:00 2001 From: mgtennant <100305096+mgtennant@users.noreply.github.com> Date: Tue, 5 Dec 2023 16:18:41 -0800 Subject: [PATCH] hide addrline2/3 orange blank spaces --- frontend/views/pages/grazing-lease.hbs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/frontend/views/pages/grazing-lease.hbs b/frontend/views/pages/grazing-lease.hbs index 90b3cfc2..274510dc 100644 --- a/frontend/views/pages/grazing-lease.hbs +++ b/frontend/views/pages/grazing-lease.hbs @@ -107,9 +107,11 @@ $("#tfn").text("{{message.fileNum}}"); $(".dataSection dd").each(function(){ - if ($(this).text() == "" || $(this).text() == "TBD") { - $(this).text(" "); - $(this).css("border", "solid 1px orange"); + if ($(this).attr("id") != "address2" && $(this).attr("id") != "address3") { + if ($(this).text() == "" || $(this).text() == "TBD") { + $(this).text(" "); + $(this).css("border", "solid 1px orange"); + } } })