From af20abf78dec3036429c61be37728c09192d70ff Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Thu, 8 Jan 2026 11:42:28 +0100 Subject: [PATCH] fix(ui): start logs at bottom --- CHANGELOG.md | 1 + ui/src/ui/app.ts | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a97d656c..2c29525f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - WhatsApp: group `/model list` output by provider for scannability. (#456) - thanks @mcinteerj - Hooks: allow per-hook model overrides for webhook/Gmail runs (e.g. GPT 5 Mini). +- Control UI: logs tab opens at the newest entries (bottom). ## 2026.1.8 diff --git a/ui/src/ui/app.ts b/ui/src/ui/app.ts index cd014e16b..63fca61e1 100644 --- a/ui/src/ui/app.ts +++ b/ui/src/ui/app.ts @@ -888,7 +888,9 @@ export class ClawdbotApp extends LitElement { this.eventLog = this.eventLogBuffer; } if (this.tab === "logs") { + this.logsAtBottom = true; await loadLogs(this, { reset: true }); + this.scheduleLogsScroll(true); } }