Fix LBA Issue where POTA causes Problems
这个提交包含在:
父节点
7f9b1e7193
当前提交
924d7304b6
共有 2 个文件被更改,包括 9 次插入 和 6 次删除
|
|
@ -468,6 +468,9 @@ $options = json_decode($options);
|
||||||
<?php if (($options->iota->show ?? "true") == "true") {
|
<?php if (($options->iota->show ?? "true") == "true") {
|
||||||
echo '<th>' . lang('gen_hamradio_iota') . '</th>';
|
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") {
|
<?php if (($options->operator->show ?? "true") == "true") {
|
||||||
echo '<th>' . lang('gen_hamradio_operator') . '</th>';
|
echo '<th>' . lang('gen_hamradio_operator') . '</th>';
|
||||||
} ?>
|
} ?>
|
||||||
|
|
|
||||||
|
|
@ -81,9 +81,9 @@ function updateRow(qso) {
|
||||||
if (user_options.iota.show == "true"){
|
if (user_options.iota.show == "true"){
|
||||||
cells.eq(c++).html(qso.iota);
|
cells.eq(c++).html(qso.iota);
|
||||||
}
|
}
|
||||||
// if (user_options.pota.show == "true"){
|
if (user_options.pota.show == "true"){
|
||||||
// cells.eq(c++).html(qso.pota);
|
cells.eq(c++).html(qso.pota);
|
||||||
// }
|
}
|
||||||
if ( (user_options.operator) && (user_options.operator.show == "true")){
|
if ( (user_options.operator) && (user_options.operator.show == "true")){
|
||||||
cells.eq(c++).html(qso.operator);
|
cells.eq(c++).html(qso.operator);
|
||||||
}
|
}
|
||||||
|
|
@ -180,9 +180,9 @@ function loadQSOTable(rows) {
|
||||||
if (user_options.iota.show == "true"){
|
if (user_options.iota.show == "true"){
|
||||||
data.push(qso.iota);
|
data.push(qso.iota);
|
||||||
}
|
}
|
||||||
// if (user_options.pota.show == "true"){
|
if (user_options.pota.show == "true"){
|
||||||
// data.push(qso.pota);
|
data.push(qso.pota);
|
||||||
// }
|
}
|
||||||
if (user_options.operator.show == "true"){
|
if (user_options.operator.show == "true"){
|
||||||
data.push(qso.operator);
|
data.push(qso.operator);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用