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

Fix semicolon

This commit is contained in:
Mark Haslinghuis 2022-08-23 21:42:27 +02:00
parent 55d4506da1
commit 7507fc0b42

View file

@ -40,4 +40,4 @@ export function getColorForPercentage(percentage, colorTableOverride = null) {
a: lower.color.a * percentageLower + upper.color.a * percentageUpper,
};
return `rgba(${[color.r, color.g, color.b, color.a].join(",")})`;
};
}