Skip to content

Commit

Permalink
BDOG-113 swapped null labels for blank labels
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherjturner committed Feb 12, 2019
1 parent b4630e5 commit a816b3c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/views/DependencyExplorerPage.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,23 +62,23 @@ <h1 id="search-service-header">Dependency Explorer</h1>
@helper.select(
form("group"),
helper.options(List(Messages("dependencyexplorer.select.group")) ++ groupArtefacts.map(_.group)),
'_label -> null,
'_label -> "",
'_class -> "form-group"
)
</td>
<td valign="top">
@helper.select(
form("artefact"),
helper.options(List()),
'_label -> null,
'_label -> "",
'_class -> "form-group"
)
</td>
<td valign="top">
@helper.select(
form("versionOp"),
helper.options(List(VersionOp.Gte.s, VersionOp.Lte.s, VersionOp.Eq.s)),
'_label -> null,
'_label -> "",
'_class -> "form-group"
)
</td>
Expand All @@ -87,7 +87,7 @@ <h1 id="search-service-header">Dependency Explorer</h1>
form("version"),
'id -> "version",
'size -> 20,
'_label -> null,
'_label -> "",
'required -> true,
'placeholder -> "Version (e.g. 1.0.0)",
'_class -> "form-group"
Expand Down

0 comments on commit a816b3c

Please sign in to comment.