From bedb60c16a9a3152730fb0634652c035b13a59ff Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Thu, 1 Jan 2026 16:46:49 +0100 Subject: [PATCH] [DBTools] Fix message about selecting rows for CQ zone update --- assets/js/sections/logbookadvanced.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/sections/logbookadvanced.js b/assets/js/sections/logbookadvanced.js index 6b0f22608..0c2d12f84 100644 --- a/assets/js/sections/logbookadvanced.js +++ b/assets/js/sections/logbookadvanced.js @@ -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); } });