Skip to content

Commit

Permalink
Fixed matched nodes in edit form
Browse files Browse the repository at this point in the history
* replace form field id for project value

for #434
  • Loading branch information
gschueler committed Jul 3, 2013
1 parent 8a80cca commit e87babc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rundeckapp/grails-app/views/scheduledExecution/_edit.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,9 @@ var applinks={
</tr>
</tbody>

<g:hiddenField name="project" value="${scheduledExecution.project ? scheduledExecution.project.toString() : projects?.size() == 1 ? projects[0].name : session.project ? session.project : ''}"/>
<g:hiddenField name="project" value="${scheduledExecution.project ? scheduledExecution.project.toString() : projects?.size() == 1 ? projects[0].name : session.project ? session.project : ''}"
id="schedEditFrameworkProject"
/>


<tbody id="optionsContent" class="savedJobFields" style=" ${wdgt.styleVisible(if:wasSaved)}">
Expand Down

0 comments on commit e87babc

Please sign in to comment.