Merge branch 'themes3' into shigusegubu-themes3

This commit is contained in:
Henry Jameson 2024-02-22 19:16:07 +02:00
commit b84396d667

View file

@ -134,7 +134,7 @@ export const convertTheme2To3 = (data) => {
const convertOpacity = () => {
const newRules = []
Object.keys(data.opacity).forEach(key => {
Object.keys(data.opacity || {}).forEach(key => {
if (!opacityKeys.has(key) || data.opacity[key] === undefined) return null
const originalOpacity = data.opacity[key]
const rule = {}