From 86810df3f74657cae3a194a34f461e28b7481576 Mon Sep 17 00:00:00 2001 From: Christophe Monniez Date: Mon, 6 Jan 2025 12:09:37 +0100 Subject: [PATCH] [FIX] runbot: fix frontend team dashboards again The previous fix in c9e8e1360 was not enough, while preventing a crash of the view, the view was empty. --- runbot/controllers/frontend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runbot/controllers/frontend.py b/runbot/controllers/frontend.py index a008ba98..9058a430 100644 --- a/runbot/controllers/frontend.py +++ b/runbot/controllers/frontend.py @@ -516,7 +516,7 @@ class Runbot(Controller): 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,