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

Fix missing semicolon;

This commit is contained in:
Mark Haslinghuis 2020-09-20 02:33:04 +02:00
parent 14e7779625
commit 98ce27adce

View file

@ -41,7 +41,7 @@ TABS.pid_tuning.initialize = function (callback) {
return MSP.promise(MSPCodes.MSP_PID_CONTROLLER); return MSP.promise(MSPCodes.MSP_PID_CONTROLLER);
} }
}).then(function() { }).then(function() {
return MSP.promise(MSPCodes.MSP_PIDNAMES) return MSP.promise(MSPCodes.MSP_PIDNAMES);
}).then(function() { }).then(function() {
return MSP.promise(MSPCodes.MSP_PID); return MSP.promise(MSPCodes.MSP_PID);
}).then(function() { }).then(function() {