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 = '
';
+ 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 = '
';
+ // 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 : '');