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

Moved getSerialRxTypes to not interfere with backup/restore

This commit is contained in:
visdauas 2020-11-19 22:41:36 +01:00
parent 56e5299be3
commit 27a4849ddf
3 changed files with 54 additions and 54 deletions

View file

@ -844,7 +844,7 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
}
const serialRXSelectEl = $('select.serialRX');
FC.RX_CONFIG.getSerialRxTypes().forEach((serialRxType, index) => {
FC.getSerialRxTypes().forEach((serialRxType, index) => {
serialRXSelectEl.append(`<option value="${index}">${serialRxType}</option>`);
});