From 3e0ff45c8d166f65f6b248c022ce6880889b0a80 Mon Sep 17 00:00:00 2001 From: wuyangfan Date: Mon, 25 May 2026 10:32:38 +0800 Subject: [PATCH] fix(ui): align timings table footer with custom timing columns The timings table header adds dynamic columns for CustomTimingStats, but the footer row always spanned only five columns. Browsers then warn that the footer row is narrower than the header row. Add matching empty footer cells for each custom timing column. Fixes #687 Co-authored-by: Cursor --- src/MiniProfiler.Shared/ui/lib/MiniProfiler.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/MiniProfiler.Shared/ui/lib/MiniProfiler.ts b/src/MiniProfiler.Shared/ui/lib/MiniProfiler.ts index fb97d051..4067d3d8 100755 --- a/src/MiniProfiler.Shared/ui/lib/MiniProfiler.ts +++ b/src/MiniProfiler.Shared/ui/lib/MiniProfiler.ts @@ -776,6 +776,7 @@ namespace StackExchange.Profiling { + ${Object.keys(p.CustomTimingStats).map(() => '').join('')} `;