mirror of
https://git.rape.pet/ulith/amputoma-fe.git
synced 2025-02-02 19:38:28 +01:00
fix tests
This commit is contained in:
parent
550080bd82
commit
a485386a3b
1 changed files with 4 additions and 3 deletions
|
@ -384,12 +384,13 @@ export const getColors = (sourceColors, sourceOpacity) => SLOT_ORDERED.reduce(({
|
|||
: (OPACITIES[opacitySlot] || {}).defaultValue
|
||||
)
|
||||
}
|
||||
if (Number.isNaN(outputColor.a)) {
|
||||
outputColor.a = 1
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (Number.isNaN(outputColor.a) || outputColor.a === undefined) {
|
||||
outputColor.a = 1
|
||||
}
|
||||
|
||||
if (opacitySlot) {
|
||||
return {
|
||||
colors: { ...colors, [key]: outputColor },
|
||||
|
|
Loading…
Add table
Reference in a new issue