fix hover state not showing up properly in editor

This commit is contained in:
Henry Jameson 2024-10-30 16:13:05 +02:00
parent 73f49466a1
commit 30206d20a7

View file

@ -518,7 +518,7 @@ export const init = ({
combination.component = component.name combination.component = component.name
combination.lazy = component.lazy || parent?.lazy combination.lazy = component.lazy || parent?.lazy
combination.parent = parent combination.parent = parent
if (combination.state.indexOf('hover') >= 0) { if (!liteMode && combination.state.indexOf('hover') >= 0) {
combination.lazy = true combination.lazy = true
} }