From 46625c20ec3bd1a1af72ec40317a0039fcd0edd6 Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Sat, 27 Dec 2025 16:30:55 +0100 Subject: [PATCH] =?UTF-8?q?Petit=20d=C3=A9bugage=20de=20la=20user=20interf?= =?UTF-8?q?ace.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pmoapp/webapp/src/components/unified/RendererTabContent.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pmoapp/webapp/src/components/unified/RendererTabContent.vue b/pmoapp/webapp/src/components/unified/RendererTabContent.vue index 334db22f..a5d4f2ac 100644 --- a/pmoapp/webapp/src/components/unified/RendererTabContent.vue +++ b/pmoapp/webapp/src/components/unified/RendererTabContent.vue @@ -56,6 +56,10 @@ async function handleQueueItemClick(item: QueueItem) { try { await api.seekQueueIndex(props.rendererId, item.index) console.log('[RendererTabContent] Jumped to queue index:', item.index, item.title) + + // Force un refetch immédiat pour synchroniser la cover affichée + // sans attendre l'événement SSE qui peut avoir un délai + await refresh(true) } catch (error) { console.error('[RendererTabContent] Error seeking to queue index:', error) uiStore.notifyError(`Erreur: ${error instanceof Error ? error.message : 'Impossible de sauter à cet item'}`)