mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-23 16:25:22 +03:00
Merge pull request #150 from mikeller/fix_121
Fixed version check. Fixes #121.
This commit is contained in:
commit
1c9e1336a2
1 changed files with 1 additions and 1 deletions
|
@ -303,7 +303,7 @@ TABS.pid_tuning.initialize = function (callback) {
|
|||
|
||||
$('#pid_main').show();
|
||||
|
||||
if (CONFIG.flightControllerIdentifier === "BTFL" || semver.ge(CONFIG.flightControllerVersion, "2.9.0")) {
|
||||
if (semver.ge(CONFIG.flightControllerVersion, "2.9.0")) {
|
||||
$('#pid_filter').show();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue