mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-22 15:55:33 +03:00
Fixed version check.
This commit is contained in:
parent
f9ee83d52e
commit
083214a22d
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