Avoid JS error on issue/pr list when logged out (#29854)
When logged out, the checkboxes are not there on the issue/pr lists, which would cause an error here. Fixes: https://github.com/go-gitea/gitea/issues/29862 --------- Co-authored-by: delvh <dev.lh@web.de> (cherry picked from commit 33973ac567d6681bda26d82f26b7294a297c693f)
This commit is contained in:
parent
2141bc3298
commit
003d860aac
|
@ -9,6 +9,7 @@ import {DELETE, POST} from '../modules/fetch.js';
|
||||||
|
|
||||||
function initRepoIssueListCheckboxes() {
|
function initRepoIssueListCheckboxes() {
|
||||||
const issueSelectAll = document.querySelector('.issue-checkbox-all');
|
const issueSelectAll = document.querySelector('.issue-checkbox-all');
|
||||||
|
if (!issueSelectAll) return; // logged out state
|
||||||
const issueCheckboxes = document.querySelectorAll('.issue-checkbox');
|
const issueCheckboxes = document.querySelectorAll('.issue-checkbox');
|
||||||
|
|
||||||
const syncIssueSelectionState = () => {
|
const syncIssueSelectionState = () => {
|
||||||
|
|
Loading…
Reference in a new issue