From 10c6ec348e88e11150f1b91cfbfc8c721f8de1bf Mon Sep 17 00:00:00 2001 From: Tyler Koenig Date: Thu, 4 Jun 2026 13:54:20 -0400 Subject: [PATCH] fix(tui): show push token and URL in detail panel Push monitors were missing token/endpoint info in the detail view, making it impossible to know where to send heartbeats. --- internal/tui/view_detail.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/internal/tui/view_detail.go b/internal/tui/view_detail.go index 2c11f95..9053225 100644 --- a/internal/tui/view_detail.go +++ b/internal/tui/view_detail.go @@ -105,6 +105,10 @@ func (m Model) viewDetailPanel() string { section("ENDPOINT") row("Type", site.Type) + if site.Type == "push" && site.Token != "" { + row("Token", site.Token) + row("Push URL", "/api/push/"+site.Token) + } if site.URL != "" { row("URL", site.URL) }