From 8818c890c518b96e160404f44df2b6680ac0d95b Mon Sep 17 00:00:00 2001 From: MechaCat02 Date: Tue, 2 Jun 2026 07:09:30 +0200 Subject: [PATCH] feat(reader): chapter select dropdown for direct chapter jumps (0.51.0) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds a chapter ` { + const target = (e.currentTarget as HTMLSelectElement).value; + if (target && target !== chapter.id) { + void goto(`/manga/${manga.id}/chapter/${target}`); + } + }} + data-testid="reader-chapter-select" + > + {#each sortedChapters as c (c.id)} + + {/each} + + +