mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-21 15:25:22 +03:00
Fix rateprofiles
This commit is contained in:
parent
3871b4b4cc
commit
69f3387a02
1 changed files with 1 additions and 1 deletions
|
@ -298,7 +298,7 @@ TuningSliders.calculateNewPids = function() {
|
||||||
PID_names.forEach(function(elementPid, indexPid) {
|
PID_names.forEach(function(elementPid, indexPid) {
|
||||||
let searchRow = $('.pid_tuning .' + elementPid + ' input');
|
let searchRow = $('.pid_tuning .' + elementPid + ' input');
|
||||||
searchRow.each(function (indexInput) {
|
searchRow.each(function (indexInput) {
|
||||||
if (indexPid < 3) {
|
if (indexPid < 3 && indexInput < 3) {
|
||||||
$(this).val(PIDs[indexPid][indexInput]);
|
$(this).val(PIDs[indexPid][indexInput]);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue