Fix LBA Issue where POTA causes Problems

这个提交包含在:
int2001 2023-12-05 06:24:40 +00:00
父节点 7f9b1e7193
当前提交 924d7304b6
找不到此签名对应的密钥
GPG 密钥 ID: DFB1C13CD2DB037B
共有 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);
}