From 5c5f440085255bf7f11af589faa4fa14d74f9294 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Tue, 17 Feb 2026 19:34:08 -0800 Subject: Fix scrolling behavior, CI linting, and update Dockerfile --- frontend-vanilla/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontend-vanilla/src/main.ts') diff --git a/frontend-vanilla/src/main.ts b/frontend-vanilla/src/main.ts index 901e316..abe454a 100644 --- a/frontend-vanilla/src/main.ts +++ b/frontend-vanilla/src/main.ts @@ -861,7 +861,7 @@ function navigateItems(direction: number) { }); const el = document.querySelector(`.feed-item[data-id="${activeItemId}"]`); - if (el) el.scrollIntoView({ block: 'start', behavior: 'smooth' }); + if (el) el.scrollIntoView({ block: 'start', behavior: 'instant' }); if (!store.items[nextIndex].read) updateItem(activeItemId, { read: true }); } -- cgit v1.2.3