Skip multi-zone DXCCs on check all

This commit is contained in:
phl0
2025-12-30 22:51:15 +01:00
parent 90e1a53b78
commit f535ea8bf5

View File

@@ -2725,7 +2725,9 @@ function saveOptions() {
$('#checkBoxAllItuZones').change(function (event) {
if (this.checked) {
$('#incorrectituzonetable tbody tr').each(function (i) {
selectQsoIdDxcc($(this).first().closest('tr').attr('id')?.replace(/\D/g, ''), 'incorrectituzonetable');
if (!$(this).first().closest('tr').find("td[id='ituZones']").text().includes(',')) {
selectQsoIdDxcc($(this).first().closest('tr').attr('id')?.replace(/\D/g, ''), 'incorrectituzonetable');
}
});
} else {
$('#incorrectituzonetable tbody tr').each(function (i) {