Job page: Remove "Latest builds (latest evaluation)"

It was kind of confusing since there are two other "latest builds"
tabs/sections.
This commit is contained in:
Eelco Dolstra
2013-02-22 12:53:10 +01:00
parent 6dbb948f1f
commit 098368c3e3
2 changed files with 0 additions and 6 deletions

View File

@ -23,8 +23,6 @@ sub overview : Chained('job') PathPart('') Args(0) {
$c->stash->{template} = 'job.tt';
$c->stash->{currentBuilds} = [$c->stash->{job}->builds->search({finished => 1, iscurrent => 1}, { order_by => 'system' })];
$c->stash->{lastBuilds} =
[ $c->stash->{job}->builds->search({ finished => 1 },
{ order_by => 'timestamp DESC', rows => 10, columns => [@buildListColumns] }) ];