From 7f9b1e719383b46238e6e1cf22bbe0fea4c798d2 Mon Sep 17 00:00:00 2001 From: Andreas <6977712+AndreasK79@users.noreply.github.com> Date: Mon, 4 Dec 2023 20:32:13 +0100 Subject: [PATCH] [LBA] Temporary comment out pota option so that operator shows --- assets/js/sections/logbookadvanced.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/assets/js/sections/logbookadvanced.js b/assets/js/sections/logbookadvanced.js index c2961633..3e996516 100644 --- a/assets/js/sections/logbookadvanced.js +++ b/assets/js/sections/logbookadvanced.js @@ -81,9 +81,9 @@ function updateRow(qso) { if (user_options.iota.show == "true"){ cells.eq(c++).html(qso.iota); } - if (user_options.pota.show == "true"){ - cells.eq(c++).html(qso.pota); - } + // if (user_options.pota.show == "true"){ + // cells.eq(c++).html(qso.pota); + // } if ( (user_options.operator) && (user_options.operator.show == "true")){ cells.eq(c++).html(qso.operator); } @@ -180,9 +180,9 @@ function loadQSOTable(rows) { if (user_options.iota.show == "true"){ data.push(qso.iota); } - if (user_options.pota.show == "true"){ - data.push(qso.pota); - } + // if (user_options.pota.show == "true"){ + // data.push(qso.pota); + // } if (user_options.operator.show == "true"){ data.push(qso.operator); }