From 3c5102dab480b30d5a455472ce3e319b0e82d390 Mon Sep 17 00:00:00 2001 From: eti Date: Fri, 27 Mar 2026 15:27:07 +0100 Subject: [PATCH] appview/pages/templates/repo/pulls: disable pointer events on "history" header Clicking the "History" header was allowed but did nothing meaningful, just flicker the view. This commit disables that behavior while keeping the relevant information like the number of comments and the number of rounds selectable as they should. Signed-off-by: eti --- appview/pages/templates/repo/pulls/pull.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/appview/pages/templates/repo/pulls/pull.html b/appview/pages/templates/repo/pulls/pull.html index 9f07de85..003eaded 100644 --- a/appview/pages/templates/repo/pulls/pull.html +++ b/appview/pages/templates/repo/pulls/pull.html @@ -179,9 +179,13 @@ text-white md:text-black md:dark:text-white {{ $bgColor }} md:bg-white md:dark:bg-gray-800 - drop-shadow-sm border-t md:border-x border-gray-200 dark:border-gray-700"> + drop-shadow-sm border-t md:border-x border-gray-200 dark:border-gray-700 + pointer-events-none + ">

History

- {{ template "subsPanelSummary" $ }} + + {{ template "subsPanelSummary" $ }} +
{{ template "submissions" $root }} -- 2.51.2