Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit 98ae82a

Browse files
bug fix bulk download
1 parent 15b5ece commit 98ae82a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/dist/js/custom.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -427,10 +427,16 @@
427427
if (bulk_action) {
428428
bulk_action.on('change', function() {
429429
if ($(this).prop('checked')) {
430+
const bulkActionDiv = document.getElementById('bulk-action-div');
431+
bulkActionDiv.style.display = 'block';
432+
430433
$('input[name^=action]').each(function() {
431434
$(this).prop('checked', true);
432435
});
433436
} else {
437+
const bulkActionDiv = document.getElementById('bulk-action-div');
438+
bulkActionDiv.style.display = 'none';
439+
434440
$('input[name^=action]').each(function() {
435441
$(this).prop('checked', false);
436442
});

0 commit comments

Comments
 (0)