From 129d7b4049aaf9f078470763a7c700d6bb9415b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Est=C3=A9ban=20Soubiran?= Date: Mon, 9 Mar 2026 12:43:09 +0100 Subject: [PATCH 1/2] feat: preserve slide overview position via url hash --- docs/guide/ui.md | 2 + packages/client/pages/overview.vue | 132 ++++++++++++++++++++++------- 2 files changed, 102 insertions(+), 32 deletions(-) diff --git a/docs/guide/ui.md b/docs/guide/ui.md index 2cdebb96ea..5127728972 100644 --- a/docs/guide/ui.md +++ b/docs/guide/ui.md @@ -81,6 +81,8 @@ You can visit an overview of all of your slides by first opening the [Quick Over The overview page gives you a linear list of all your slides, with all of your notes on the side. You can double-click on the notes to edit the notes directly, and drag the clicks sliders to preview the steps in your slides. +Clicking a slide number in the left rail now updates the URL hash (for example `http://localhost:/overview#slide-24`), making it easy to refresh the page or share a direct link to a specific slide section in long decks. + ## Notes Editor {#notes-editor} > Available since v0.52.0 diff --git a/packages/client/pages/overview.vue b/packages/client/pages/overview.vue index 2b4da0bae2..fb552885d5 100644 --- a/packages/client/pages/overview.vue +++ b/packages/client/pages/overview.vue @@ -1,7 +1,8 @@