1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-21 15:25:22 +03:00

Merge pull request #2098 from McGiverGim/fix_vtx_without_tables

Fix vtxPower_X parameter string
This commit is contained in:
Michael Keller 2020-07-05 12:33:35 +12:00 committed by GitHub
commit 4a1b68a64a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -497,7 +497,7 @@ TABS.vtx.initialize = function (callback) {
if (i === 0) {
selectPower.append(new Option(i18n.getMessage('vtxPower_0'), 0));
} else {
selectPower.append(new Option(i18n.getMessage('vtxPower_X', {bandName: i}), i));
selectPower.append(new Option(i18n.getMessage('vtxPower_X', {powerLevel: i}), i));
}
}
}