Merge branch 'fix-fix-themes' into 'develop'
fallback if shadows aren't defined See merge request pleroma/pleroma-fe!1337
This commit is contained in:
commit
6e4a0d408c
|
@ -244,7 +244,7 @@ export const generateShadows = (input, colors) => {
|
|||
}
|
||||
|
||||
const cleanInputShadows = Object.fromEntries(
|
||||
Object.entries(input.shadows)
|
||||
Object.entries(input.shadows || {})
|
||||
.map(([name, shadowSlot]) => [
|
||||
name,
|
||||
// defaulting color to black to avoid potential problems
|
||||
|
|
Loading…
Reference in New Issue