From 77d2bd1610af024efce20eb343821c173e86f990 Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Sat, 22 Nov 2025 17:17:46 +0100 Subject: [PATCH] Removed QRZ links --- assets/js/sections/bandmap_list.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/assets/js/sections/bandmap_list.js b/assets/js/sections/bandmap_list.js index b354f8fa1..cf0854d1e 100644 --- a/assets/js/sections/bandmap_list.js +++ b/assets/js/sections/bandmap_list.js @@ -1070,10 +1070,9 @@ $(function() { // Submode column: show submode if available let submode = (single.submode && single.submode !== '') ? single.submode : ''; - data[0].push(submode); // Callsign column: wrap in callstats link with color coding, add QRZ icon before callsign - let qrzIcon = 'QRZ'; + data[0].push(submode); // Callsign column: wrap in callstats link with color coding let callstatsLink = '' + single.spotted + ''; - wked_info = ((wked_info != '' ? '' : '') + qrzIcon + callstatsLink + (wked_info != '' ? '' : '')); + wked_info = ((wked_info != '' ? '' : '') + callstatsLink + (wked_info != '' ? '' : '')); var spotted = wked_info; data[0].push(spotted); @@ -1129,10 +1128,9 @@ $(function() { let dxcc_number = dxcc_id_value ? ((dxcc_wked_info != '' ? '' : '') + dxcc_id_value + (dxcc_wked_info != '' ? '' : '')) : ''; data[0].push(dxcc_number); - // de Callsign column (Spotter) - clickable callstats link with QRZ icon before callsign - let spotterQrzIcon = 'QRZ'; + // de Callsign column (Spotter) - clickable callstats link let spotterCallstatsLink = '' + single.spotter + ''; - data[0].push(spotterQrzIcon + spotterCallstatsLink); + data[0].push(spotterCallstatsLink); // de Cont column: spotter's continent data[0].push((single.dxcc_spotter && single.dxcc_spotter.cont) ? single.dxcc_spotter.cont : '');