Skip to content

Commit

Permalink
Fix text box for ids composed of several words (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximeKestemont authored and akshayrai committed Sep 7, 2017
1 parent 4812783 commit 016f71e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/views/page/flowHistoryPage.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h4>Flow History</h4>
<form class="box" id="flow-history-form" role="form" method="get" action="@routes.Application.flowHistory()">
<div class="form-group">
<label for="form-flow-def-idurl" >Flow Definition URL/ID</label>
<input type="text" class="form-control" id="form-flow-def-id" name="flow-def-id" placeholder="Flow Definition URL/ID" value=@flowDefId>
<input type="text" class="form-control" id="form-flow-def-id" name="flow-def-id" placeholder="Flow Definition URL/ID" value="@flowDefId">
</div>
<label for="graphType">Filter</label>
<table>
Expand Down
2 changes: 1 addition & 1 deletion app/views/page/jobHistoryPage.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h4>Job History</h4>
<form id="job-history-form" role="form" method="get" action="@routes.Application.jobHistory()">
<div class="form-group">
<label for="form-job-def-id">Job Definition URL/ID</label>
<input type="text" class="form-control" id="form-job-def-id" name="job-def-id" placeholder="Job Def URL/ID" value=@jobDefId>
<input type="text" class="form-control" id="form-job-def-id" name="job-def-id" placeholder="Job Def URL/ID" value="@jobDefId">
</div>
<label for="graphType">Filter</label>
<table>
Expand Down
2 changes: 1 addition & 1 deletion app/views/page/oldFlowHistoryPage.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<form id="flow-history-form" role="form" method="get" action="@routes.Application.oldFlowHistory()">
<div class="form-group">
<label for="form-flow-def-idurl">Flow Definition URL/ID</label>
<input type="text" class="form-control" id="form-flow-def-id" name="flow-def-id" placeholder="Flow Definition URL/ID" value=@flowDefId>
<input type="text" class="form-control" id="form-flow-def-id" name="flow-def-id" placeholder="Flow Definition URL/ID" value="@flowDefId">
</div>
<label for="graphType">Filter</label>
<select class="form-control" name="select-graph-type" id="graphType">
Expand Down
2 changes: 1 addition & 1 deletion app/views/page/oldJobHistoryPage.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<form id="job-history-form" role="form" method="get" action="@routes.Application.oldJobHistory()">
<div class="form-group">
<label for="form-job-def-id">Job Definition URL/ID</label>
<input type="text" class="form-control" id="form-job-def-id" name="job-def-id" placeholder="Job Def URL/ID" value=@jobDefId>
<input type="text" class="form-control" id="form-job-def-id" name="job-def-id" placeholder="Job Def URL/ID" value="@jobDefId">
</div>
<label for="graphType">Filter</label>
<select class="form-control" name="select-graph-type" id="graphType">
Expand Down

0 comments on commit 016f71e

Please sign in to comment.