logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://anongit.hacktivis.me/git/pleroma-fe.git/
commit: 30206d20a7e65b58a580c7dfc322860a6ea2c557
parent 73f49466a15279a9ccc23b3ee538ab7ec98ee49e
Author: Henry Jameson <me@hjkos.com>
Date:   Wed, 30 Oct 2024 16:13:05 +0200

fix hover state not showing up properly in editor

Diffstat:

Msrc/services/theme_data/theme_data_3.service.js2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/services/theme_data/theme_data_3.service.js b/src/services/theme_data/theme_data_3.service.js @@ -518,7 +518,7 @@ export const init = ({ combination.component = component.name combination.lazy = component.lazy || parent?.lazy combination.parent = parent - if (combination.state.indexOf('hover') >= 0) { + if (!liteMode && combination.state.indexOf('hover') >= 0) { combination.lazy = true }