From 019213235f656dc561a7a7795e84a3016a67417b Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 13 Jan 2026 10:18:00 +0100 Subject: dashboard/app: fix rendering of dup bugs caption After addition of collapsible sections on the bug page, we show 2 captions for the duplicate bugs table. One for the collapsible span "Duplicate bugs (2)", and another inside for the table "duplicates (2):". Remove the inner duplicate caption. --- dashboard/app/main.go | 1 - 1 file changed, 1 deletion(-) (limited to 'dashboard') diff --git a/dashboard/app/main.go b/dashboard/app/main.go index ef6738905..30a30eb84 100644 --- a/dashboard/app/main.go +++ b/dashboard/app/main.go @@ -1898,7 +1898,6 @@ func loadDupsForBug(c context.Context, bug *Bug, state *ReportingState, } group := &uiBugGroup{ Now: timeNow(c), - Caption: "duplicates", ShowPatched: true, ShowStatus: true, Bugs: results, -- cgit mrf-deployment