From 52a467718ea19da2f852fb56281e3a59d5158500 Mon Sep 17 00:00:00 2001 From: Christophe Monniez Date: Tue, 19 Nov 2024 08:32:44 +0100 Subject: [PATCH] [FIX] runbot: fix frontend team dashboards --- 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 90ce4bc1..eada071d 100644 --- a/runbot/controllers/frontend.py +++ b/runbot/controllers/frontend.py @@ -510,7 +510,7 @@ class Runbot(Controller): qctx = { 'team': team, 'teams': teams, - 'build_assignment_ids': request.env['runbot.build.assignment'].search(domain, order=order), + 'build_assignment_ids': request.env['runbot.build.error'].search(domain, order=order), 'hide_empty': bool(hide_empty), 'searchbar_sortings': searchbar_sortings, 'sortby': sortby,