search: fix references to jobset / project info

This commit is contained in:
Graham Christensen 2022-01-09 10:14:24 -05:00
parent 0b33550871
commit c7c4759600

View file

@ -471,8 +471,10 @@ sub search :Local Args(0) {
, "jobset.hidden" => 0
, iscurrent => 1
},
{ order_by => ["project", "jobset", "job"], join => ["project", "jobset"]
, rows => $c->stash->{limit} + 1
{
order_by => ["jobset.project", "jobset.name", "job"],
join => { "jobset" => "project" },
rows => $c->stash->{limit} + 1
} )
];