more resistant code for color parsing error

This commit is contained in:
Xnuk Shuman 2022-12-20 03:11:34 +09:00
parent 10fb8efddf
commit 2fc0927b7a
No known key found for this signature in database
GPG Key ID: B810FA3E0390F1F2
1 changed files with 4 additions and 0 deletions

View File

@ -279,6 +279,9 @@ export default {
opacity
)
// Temporary patch for null-y value errors
if (layers.flat().some(v => v == null)) return acc
return {
...acc,
...textColors.reduce((acc, textColorKey) => {
@ -300,6 +303,7 @@ export default {
return Object.entries(ratios).reduce((acc, [k, v]) => { acc[k] = hints(v); return acc }, {})
} catch (e) {
console.warn('Failure computing contrasts', e)
return {}
}
},
previewRules () {