Merge pull request #3006 from haslinghuis/remove-semicolon

Fix semicolon
10.9-maintenance
haslinghuis 2022-08-24 00:05:36 +02:00 committed by GitHub
commit ea02d9a7a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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(",")})`;
};
}