Skip to content

Commit

Permalink
Revert "Sort inputs table" (#448)
Browse files Browse the repository at this point in the history
This reverts commit c103163.

Fixes #412 #445
  • Loading branch information
k0001 authored and domenkozar committed Jan 30, 2017
1 parent de55303 commit 63d8c8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/root/edit-jobset.tt
Expand Up @@ -47,7 +47,7 @@
<tr><th></th><th>Input name</th><th>Type</th><th style="width: 50%">Value</th><th>Notify committers</th></tr>
</thead>
<tbody class="inputs">
[% inputs = createFromEval ? eval.jobsetevalinputs : jobset.jobsetinputs; FOREACH input IN inputs.sort('name') %]
[% inputs = createFromEval ? eval.jobsetevalinputs : jobset.jobsetinputs; FOREACH input IN inputs %]
[% INCLUDE renderJobsetInput input=input baseName="input-$input.name" %]
[% END %]
<tr>
Expand Down
2 changes: 1 addition & 1 deletion src/root/jobset.tt
Expand Up @@ -33,7 +33,7 @@
<tr><th>Input name</th><th>Type</th><th>Values</th></tr>
</thead>
<tbody class="inputs">
[% FOREACH input IN jobset.jobsetinputs.sort('name') %]
[% FOREACH input IN jobset.jobsetinputs %]
[% INCLUDE renderJobsetInput input=input baseName="input-$input.name" %]
[% END %]
</tbody>
Expand Down

0 comments on commit 63d8c8d

Please sign in to comment.