mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-16 12:55:13 +03:00
fixed const
This commit is contained in:
parent
0dca9d4706
commit
fb32ee614a
1 changed files with 1 additions and 1 deletions
|
@ -215,7 +215,7 @@ var Settings = (function () {
|
|||
if (conversionTable[uiUnitValue]){
|
||||
const fromUnits = conversionTable[uiUnitValue];
|
||||
if (fromUnits[inputUnit]){
|
||||
cost multiplier = unitRatioTable[inputUnit][fromUnits[inputUnit]];
|
||||
const multiplier = unitRatioTable[inputUnit][fromUnits[inputUnit]];
|
||||
return {'multiplier':multiplier, 'unitName':fromUnits[inputUnit]};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue