From c052cc72fb82995b5934a27ee9993d42306b7628 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=20Luis=20Monta=C3=B1es=20Ojados?= Date: Mon, 19 Jan 2026 23:37:04 +0100 Subject: [PATCH] fix: Ensure transaction flow navigation works for all calls --- internal/tui/model.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/tui/model.go b/internal/tui/model.go index 051a873..2c6ad47 100644 --- a/internal/tui/model.go +++ b/internal/tui/model.go @@ -669,7 +669,7 @@ func (m *Model) updateSubView(msg tea.Msg) (tea.Model, tea.Cmd) { return m, nil case "e": // Export Call Log - flows := m.callFlowStore.GetRecentFlows(20) + flows := m.callFlowStore.GetSortedFlows() if m.selectedFlow < len(flows) { flow := flows[m.selectedFlow] // Sanitize Call-ID for filename @@ -722,7 +722,7 @@ func (m *Model) updateSubView(msg tea.Msg) (tea.Model, tea.Cmd) { m.updateCallDetailView() } case "down", "j": - flows := m.callFlowStore.GetRecentFlows(20) + flows := m.callFlowStore.GetSortedFlows() if m.selectedFlow < len(flows) { flow := flows[m.selectedFlow] if m.selectedPacketIndex < len(flow.Packets)-1 {