Skip to content

Commit

Permalink
Update web_src/js/features/repo-issue-list.js
Browse files Browse the repository at this point in the history
Co-authored-by: delvh <[email protected]>
  • Loading branch information
silverwind and delvh committed Mar 17, 2024
1 parent d075b5d commit f5dcea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web_src/js/features/repo-issue-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import {createSortable} from '../modules/sortable.js';
import {DELETE, POST} from '../modules/fetch.js';

function initRepoIssueListCheckboxes() {
if (!window.config.isSignedIn) return;
const issueSelectAll = document.querySelector('.issue-checkbox-all');
const issueCheckboxes = document.querySelectorAll('.issue-checkbox');
if(!issueSelectAll) return;

const syncIssueSelectionState = () => {
const checkedCheckboxes = Array.from(issueCheckboxes).filter((el) => el.checked);
Expand Down

0 comments on commit f5dcea1

Please sign in to comment.