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
1 changed files with 1 additions and 1 deletions
|
@ -244,7 +244,7 @@ export const generateShadows = (input, colors) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const cleanInputShadows = Object.fromEntries(
|
const cleanInputShadows = Object.fromEntries(
|
||||||
Object.entries(input.shadows)
|
Object.entries(input.shadows || {})
|
||||||
.map(([name, shadowSlot]) => [
|
.map(([name, shadowSlot]) => [
|
||||||
name,
|
name,
|
||||||
// defaulting color to black to avoid potential problems
|
// defaulting color to black to avoid potential problems
|
||||||
|
|
Loading…
Reference in a new issue