mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-17 05:15:21 +03:00
Fix gps_rescue_min_start_dist (#3076)
This commit is contained in:
parent
bb8687bcbe
commit
907d5b00da
1 changed files with 4 additions and 0 deletions
|
@ -317,6 +317,10 @@ failsafe.initialize = function (callback) {
|
|||
$('input[name="gps_rescue_min_dth"]').closest('.number').hide();
|
||||
}
|
||||
|
||||
if (semver.gte(FC.CONFIG.apiVersion, API_VERSION_1_45)) {
|
||||
$('input[name="gps_rescue_min_dth"]').attr("min", 20);
|
||||
}
|
||||
|
||||
} else {
|
||||
// GPS Rescue Parameters not available
|
||||
$('.pro4 > .proceduresettings').hide();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue