Skip to content

Commit

Permalink
FSET-1081 fixed the rendering bug in the address widget
Browse files Browse the repository at this point in the history
  • Loading branch information
ian-stainer committed Jan 4, 2017
1 parent 6dc0680 commit 505c521
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 505c521

Please sign in to comment.