Skip to content

Commit

Permalink
Merge pull request #128 from bcgov/fix-orange-blank-lines
Browse files Browse the repository at this point in the history
hide addrline2/3 orange blank spaces
  • Loading branch information
mgtennant authored Dec 6, 2023
2 parents 935c2b5 + 0b93a09 commit 1b21ec9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions frontend/views/pages/grazing-lease.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
}
})
Expand Down

0 comments on commit 1b21ec9

Please sign in to comment.