[DBTools] Fix message about selecting rows for CQ zone update

This commit is contained in:
Andreas Kristiansen
2026-01-01 16:46:49 +01:00
parent 9767c23577
commit bedb60c16a

View File

@@ -2886,7 +2886,7 @@ function saveOptions() {
$('#incorrectcqzonetable tbody input:checked').each(function () {
let id = $(this).closest('tr').attr('id')?.replace(/\D/g, '');
// Skip entry if DXCC covers multiple CQ zones as the matching one cannot be identified automagically atm or force update
if (!$(this).closest('tr').find("td[id='cqZones']").text().includes(',') || $('#forceMultiZoneUpdate').prop("checked")) {
if (!$(this).closest('tr').find("td[id='cqZones']").text().includes(',') || $('#forceMultiZoneUpdateCq').prop("checked")) {
id_list.push(id);
}
});