1
0
Fork 0
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:
Michael Keller 2016-07-27 07:13:38 +12:00
parent f9ee83d52e
commit 083214a22d

View file

@ -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();
}