diff options
author | yp05327 <576951401@qq.com> | 2023-05-09 13:50:16 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 00:50:16 -0400 |
commit | 2ee72d011fa05852ba4117a8b849fde32cbd54e7 (patch) | |
tree | 93653c3d51c3effe34c1f369812a3bb903421dcb /web_src/js | |
parent | d5b2bf9044caad9fb473312c4816f6c6caad4698 (diff) | |
download | gitea-2ee72d011fa05852ba4117a8b849fde32cbd54e7.tar.gz gitea-2ee72d011fa05852ba4117a8b849fde32cbd54e7.zip |
Add permission check for moving issue action in project view page (#24589)
Fix #22954
Only users who have write permission can move issues in the project view page.
Diffstat (limited to 'web_src/js')
-rw-r--r-- | web_src/js/features/repo-projects.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/js/features/repo-projects.js b/web_src/js/features/repo-projects.js index cd38c41e2d..11f5518283 100644 --- a/web_src/js/features/repo-projects.js +++ b/web_src/js/features/repo-projects.js @@ -36,7 +36,7 @@ function moveIssue({item, from, to, oldIndex}) { } async function initRepoProjectSortable() { - const els = document.querySelectorAll('#project-board > .board'); + const els = document.querySelectorAll('#project-board > .board.sortable'); if (!els.length) return; const {Sortable} = await import(/* webpackChunkName: "sortable" */'sortablejs'); |