mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-24 16:55:22 +03:00
Merge pull request #464 from iNavFlight/dzikuvx-mixer-ouput-motor-indexing-fix
Index motors from 1 in output mapping preview
This commit is contained in:
commit
1c71d7bf08
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ TABS.mixer.initialize = function (callback, scrollPosition) {
|
|||
output = OUTPUT_MAPPING.getFwMotorOutput(index);
|
||||
}
|
||||
if (output !== null) {
|
||||
$('#function-' + output).html("Motor " + index);
|
||||
$('#function-' + output).html("Motor " + (index + 1));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue