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]