From 1e1e1a26576795b14cceeaaefb0d256b88910275 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Wed, 4 Feb 2026 11:59:47 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=EF=B8=8F(admin)=20remove=20list=20fil?= =?UTF-8?q?ters=20based=20on=20room=20in=20recording=20view?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was a mistake: the filter was never used in production and caused performance issues. It generated a list of unique room slugs, bloating the DOM with thousands of values and slowing down view rendering. Remove this regression. --- src/backend/core/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/core/admin.py b/src/backend/core/admin.py index 3797d118..f6cc73c9 100644 --- a/src/backend/core/admin.py +++ b/src/backend/core/admin.py @@ -207,7 +207,7 @@ class RecordingAdmin(admin.ModelAdmin): "created_at", "worker_id", ) - list_filter = ["status", "room", "created_at"] + list_filter = ["created_at"] readonly_fields = ["id", "created_at", "updated_at"] actions = [resend_notification]