Skip to content

Commit

Permalink
[FIX] runbot: fix frontend team dashboards again
Browse files Browse the repository at this point in the history
The previous fix in c9e8e13 was not enough, while preventing a crash
of the view, the view was empty.
  • Loading branch information
d-fence authored and Xavier-Do committed Jan 6, 2025
1 parent e49c583 commit 86810df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runbot/controllers/frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ def team_dashboards(self, team=None, hide_empty=False, **kwargs):
qctx = {
'team': team,
'teams': teams,
'build_assignment_ids': request.env['runbot.build.error'].search(domain, order=order),
'assignment_ids': request.env['runbot.build.error'].search(domain, order=order),
'hide_empty': bool(hide_empty),
'searchbar_sortings': searchbar_sortings,
'sortby': sortby,
Expand Down

0 comments on commit 86810df

Please sign in to comment.