Skip to content

Commit

Permalink
search: fix references to jobset / project info
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc committed Jan 14, 2022
1 parent 0b33550 commit c7c4759
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/lib/Hydra/Controller/Root.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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
} )
];

Expand Down

0 comments on commit c7c4759

Please sign in to comment.