Skip to content

Commit

Permalink
Merge pull request #12 from hmrc/fset-1081
Browse files Browse the repository at this point in the history
FSET-1081 fixed the rendering bug in the address widget
  • Loading branch information
Henri Cook authored Jan 5, 2017
2 parents 6dc0680 + 505c521 commit c8ac576
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions app/views/widgets/address.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,20 @@
'_class -> "form-group-compound",
'_showConstraints -> false)(helpers.CSRFieldConstructor.myFields, lang)
@helper.inputText(form(s"$fieldNamespace.line2"),
'_label -> "",
'class -> "form-control",
'_class -> "form-group-compound",
'_showConstraints -> false,
'optional -> "")
'optional -> "")(helpers.CSRFieldConstructor.myFields, lang)
@helper.inputText(form(s"$fieldNamespace.line3"),
'_label -> "",
'class -> "form-control",
'_class -> "form-group-compound",
'_showConstraints -> false,
'optional -> "")
'optional -> "")(helpers.CSRFieldConstructor.myFields, lang)
@helper.inputText(form(s"$fieldNamespace.line4"),
'_label -> "",
'class -> "form-control",
'_showConstraints -> false,
'optional -> "")
'optional -> "")(helpers.CSRFieldConstructor.myFields, lang)
</div>

0 comments on commit c8ac576

Please sign in to comment.