We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d075b5d commit f5dcea1Copy full SHA for f5dcea1
web_src/js/features/repo-issue-list.js
@@ -8,9 +8,9 @@ import {createSortable} from '../modules/sortable.js';
8
import {DELETE, POST} from '../modules/fetch.js';
9
10
function initRepoIssueListCheckboxes() {
11
- if (!window.config.isSignedIn) return;
12
const issueSelectAll = document.querySelector('.issue-checkbox-all');
13
const issueCheckboxes = document.querySelectorAll('.issue-checkbox');
+ if(!issueSelectAll) return;
14
15
const syncIssueSelectionState = () => {
16
const checkedCheckboxes = Array.from(issueCheckboxes).filter((el) => el.checked);
0 commit comments