Merge pull request #2773 from int2001/lba_potafix

Fix LBA Issue where POTA causes Problems
这个提交包含在:
Andreas Kristiansen 2023-12-05 08:46:50 +01:00 提交者 GitHub
当前提交 a0ced54f4b
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23
共有 2 个文件被更改,包括 9 次插入6 次删除

查看文件

@ -468,6 +468,9 @@ $options = json_decode($options);
<?php if (($options->iota->show ?? "true") == "true") {
echo '<th>' . lang('gen_hamradio_iota') . '</th>';
} ?>
<?php if (($options->pota->show ?? "true") == "true") {
echo '<th>' . lang('gen_hamradio_pota') . '</th>';
} ?>
<?php if (($options->operator->show ?? "true") == "true") {
echo '<th>' . lang('gen_hamradio_operator') . '</th>';
} ?>

查看文件

@ -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);
}