From 7456573541c0c01314690e4a40bc4b5ec6faf79e Mon Sep 17 00:00:00 2001 From: Denys Konovalov Date: Mon, 14 Aug 2023 03:15:16 +0200 Subject: [PATCH] fix grab cursor on default column (#26476) Fix https://github.com/go-gitea/gitea/pull/26448#issuecomment-1676194200 I accidentally set grab cursor for project columns instead of issue cards, which actually turned out not to be a problem - with proper check for the default column, which can't be moved. --------- Co-authored-by: delvh Co-authored-by: Giteabot --- templates/projects/view.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/projects/view.tmpl b/templates/projects/view.tmpl index 97869ca262..700b40c39b 100644 --- a/templates/projects/view.tmpl +++ b/templates/projects/view.tmpl @@ -167,9 +167,9 @@
-
+
{{range (index $.IssuesMap .ID)}} -
+
{{template "repo/issue/card" (dict "Issue" . "Page" $)}}
{{end}}