From 81ce1fbb026dcb140f00276501b2b61854daa71c Mon Sep 17 00:00:00 2001 From: Jay George Date: Tue, 2 Jun 2026 12:15:11 +0100 Subject: [PATCH 1/2] Do not rely on hover for initiating an animation because --speed can toggle to 0 if you move your mouse out of the area --- .../js/components/ui/Publish/Sections.vue | 41 +++++++++++-------- 1 file changed, 24 insertions(+), 17 deletions(-) diff --git a/resources/js/components/ui/Publish/Sections.vue b/resources/js/components/ui/Publish/Sections.vue index f2d07a05fa..0081db9693 100644 --- a/resources/js/components/ui/Publish/Sections.vue +++ b/resources/js/components/ui/Publish/Sections.vue @@ -43,6 +43,7 @@ function renderInstructions(instructions) { function toggleSection(section) { if (section.collapsible) { + section.collapsibleInteracted = true; section.collapsed = !section.collapsed; } } @@ -75,7 +76,10 @@ function toggleSection(section) {
@@ -92,13 +96,15 @@ function toggleSection(section) {