1
0
Fork 0
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:
Michael Keller 2016-07-27 07:14:52 +12:00 committed by GitHub
commit 1c9e1336a2

View file

@ -303,7 +303,7 @@ TABS.pid_tuning.initialize = function (callback) {
$('#pid_main').show(); $('#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(); $('#pid_filter').show();
} }