[fix] Fix bulk action checkboxes not hiding after deselecting all

pull/7618/head
Shohan 2021-08-26 12:44:28 +05:30 zatwierdzone przez Matt Westcott
rodzic 5f261910ae
commit 6deafb7dd8
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -39,6 +39,8 @@ function onSelectAllChange(e) {
el.checked = e.target.checked;
if (e.target.checked) {
el.dispatchEvent(changeEvent);
} else {
el.classList.remove('show');
}
}
if (!e.target.checked) {