Skip to content

Commit 016f71e

Browse files
MaximeKestemontakshayrai
authored andcommitted
Fix text box for ids composed of several words (#265)
1 parent 4812783 commit 016f71e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

app/views/page/flowHistoryPage.scala.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ <h4>Flow History</h4>
2626
<form class="box" id="flow-history-form" role="form" method="get" action="@routes.Application.flowHistory()">
2727
<div class="form-group">
2828
<label for="form-flow-def-idurl" >Flow Definition URL/ID</label>
29-
<input type="text" class="form-control" id="form-flow-def-id" name="flow-def-id" placeholder="Flow Definition URL/ID" value=@flowDefId>
29+
<input type="text" class="form-control" id="form-flow-def-id" name="flow-def-id" placeholder="Flow Definition URL/ID" value="@flowDefId">
3030
</div>
3131
<label for="graphType">Filter</label>
3232
<table>

app/views/page/jobHistoryPage.scala.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ <h4>Job History</h4>
2626
<form id="job-history-form" role="form" method="get" action="@routes.Application.jobHistory()">
2727
<div class="form-group">
2828
<label for="form-job-def-id">Job Definition URL/ID</label>
29-
<input type="text" class="form-control" id="form-job-def-id" name="job-def-id" placeholder="Job Def URL/ID" value=@jobDefId>
29+
<input type="text" class="form-control" id="form-job-def-id" name="job-def-id" placeholder="Job Def URL/ID" value="@jobDefId">
3030
</div>
3131
<label for="graphType">Filter</label>
3232
<table>

app/views/page/oldFlowHistoryPage.scala.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<form id="flow-history-form" role="form" method="get" action="@routes.Application.oldFlowHistory()">
2525
<div class="form-group">
2626
<label for="form-flow-def-idurl">Flow Definition URL/ID</label>
27-
<input type="text" class="form-control" id="form-flow-def-id" name="flow-def-id" placeholder="Flow Definition URL/ID" value=@flowDefId>
27+
<input type="text" class="form-control" id="form-flow-def-id" name="flow-def-id" placeholder="Flow Definition URL/ID" value="@flowDefId">
2828
</div>
2929
<label for="graphType">Filter</label>
3030
<select class="form-control" name="select-graph-type" id="graphType">

app/views/page/oldJobHistoryPage.scala.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<form id="job-history-form" role="form" method="get" action="@routes.Application.oldJobHistory()">
2525
<div class="form-group">
2626
<label for="form-job-def-id">Job Definition URL/ID</label>
27-
<input type="text" class="form-control" id="form-job-def-id" name="job-def-id" placeholder="Job Def URL/ID" value=@jobDefId>
27+
<input type="text" class="form-control" id="form-job-def-id" name="job-def-id" placeholder="Job Def URL/ID" value="@jobDefId">
2828
</div>
2929
<label for="graphType">Filter</label>
3030
<select class="form-control" name="select-graph-type" id="graphType">

0 commit comments

Comments
 (0)