From 45e91c2b0ccfc5a64cfe434757d5fcf19a809b90 Mon Sep 17 00:00:00 2001 From: phl0 Date: Tue, 2 May 2023 18:20:08 +0200 Subject: [PATCH] Allow for HTML in table row --- assets/js/sections/logbookadvanced.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/js/sections/logbookadvanced.js b/assets/js/sections/logbookadvanced.js index f410b60e..c8d15d1e 100644 --- a/assets/js/sections/logbookadvanced.js +++ b/assets/js/sections/logbookadvanced.js @@ -26,9 +26,9 @@ function updateRow(qso) { cells.eq(c++).text(qso.dxRefs); cells.eq(c++).text(qso.name); cells.eq(c++).text(qso.qslVia); - cells.eq(c++).text(qso.qsl); - cells.eq(c++).text(qso.lotw); - cells.eq(c++).text(qso.eqsl); + cells.eq(c++).html(qso.qsl); + cells.eq(c++).html(qso.lotw); + cells.eq(c++).html(qso.eqsl); cells.eq(c++).text(qso.qslMessage); cells.eq(c++).text(qso.dxcc); cells.eq(c++).text(qso.state);