mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
fixed ambiguous id in view which causes that minelevation never worked
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
|
||||
<h4>Your station</h4>
|
||||
<div class="mb-3 w-auto">
|
||||
<label class="my-1 me-sm-2 w-auto" id="minelevation" for="minelevation"><?= __("Min. Satellite Elevation"); ?></label>
|
||||
<label class="my-1 me-sm-2 w-auto" id="label_minelevation" for="minelevation"><?= __("Min. Satellite Elevation"); ?></label>
|
||||
<input class="my-1 me-sm-2 w-auto form-control form-control-sm" id="minelevation" type="number" min="0" max="90" name="minelevation" value="0" />
|
||||
</div>
|
||||
<div class="mb-3 w-auto">
|
||||
|
||||
@@ -807,6 +807,7 @@ class Predict
|
||||
if ($detail->vis != Predict::SAT_VIS_VISIBLE) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($detail->el < $this->minEle) {
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user