From 9e15b369d30e250af47c8928652fd1c817d2f0f4 Mon Sep 17 00:00:00 2001 From: Tyler Koenig Date: Thu, 4 Jun 2026 12:36:24 -0400 Subject: [PATCH] fix(tui): wire up [e] edit key in detail panel The detail panel footer showed [e] Edit but handleDetailKey had no case for it. Route to handleEditItem() like the dashboard does. --- internal/tui/update.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/tui/update.go b/internal/tui/update.go index 3488460..84e2bbb 100644 --- a/internal/tui/update.go +++ b/internal/tui/update.go @@ -246,6 +246,8 @@ func (m *Model) handleDetailKey(msg tea.KeyMsg) (tea.Model, tea.Cmd) { switch msg.String() { case "i", "esc": m.state = stateDashboard + case "e": + return m.handleEditItem() case "h": if m.cursor < len(m.sites) { site := m.sites[m.cursor]