Revert "Sort inputs table" (#448)

This reverts commit c103163825.

Fixes #412 #445
This commit is contained in:
Renzo Carbonara 2017-01-30 18:20:08 +01:00 committed by Domen Kožar
parent de55303197
commit 63d8c8d631
2 changed files with 2 additions and 2 deletions

View file

@ -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>

View file

@ -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>