From 31a506aac6b9cb2ddcec20ff14abbba614ecfefd Mon Sep 17 00:00:00 2001 From: oppiliappan Date: Thu, 22 May 2025 15:51:58 +0100 Subject: [PATCH] appview: pulls: do not truncate filename in merge-conflict indicator --- appview/pages/templates/repo/pulls/pull.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appview/pages/templates/repo/pulls/pull.html b/appview/pages/templates/repo/pulls/pull.html index 8c30dafb..40f3725a 100644 --- a/appview/pages/templates/repo/pulls/pull.html +++ b/appview/pages/templates/repo/pulls/pull.html @@ -226,7 +226,7 @@ {{ if .Filename }}
  • {{ i "file-warning" "w-4 h-4 mr-1.5 text-red-500 dark:text-red-300" }} - {{ slice .Filename 0 (sub (len .Filename) 2) }} + {{ .Filename }}
  • {{ else if .Reason }}
  • -- 2.51.2