* In views, support selecting a job that doesn't depend on the
primary job, but is in the same jobset.
This commit is contained in:
@ -92,7 +92,7 @@ sub view_view : Chained('view') PathPart('') Args(0) {
|
||||
$c->stash->{template} = 'view.tt';
|
||||
|
||||
my $resultsPerPage = 10;
|
||||
my $page = int($c->req->param('page')) || 1;
|
||||
my $page = int($c->req->param('page') || "1") || 1;
|
||||
|
||||
my @results = ();
|
||||
push @results, getViewResult($_, $c->stash->{jobs}) foreach
|
||||
|
Reference in New Issue
Block a user