summaryrefslogtreecommitdiffhomepage
path: root/internal/tui/components/logs/table.go
diff options
context:
space:
mode:
authoradamdottv <[email protected]>2025-05-14 07:47:15 -0500
committeradamdottv <[email protected]>2025-05-14 07:47:15 -0500
commitf7849c2d59d335c91d6ad079cabcda98c8b610f8 (patch)
treecef1c17b4f9291c6daf659375c733ed0eded6c23 /internal/tui/components/logs/table.go
parent463002185b18955583af0c8695648c2ae03fe03f (diff)
downloadopencode-f7849c2d59d335c91d6ad079cabcda98c8b610f8.tar.gz
opencode-f7849c2d59d335c91d6ad079cabcda98c8b610f8.zip
fix: log display
Diffstat (limited to 'internal/tui/components/logs/table.go')
-rw-r--r--internal/tui/components/logs/table.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/tui/components/logs/table.go b/internal/tui/components/logs/table.go
index 5632d163c..fa701adee 100644
--- a/internal/tui/components/logs/table.go
+++ b/internal/tui/components/logs/table.go
@@ -81,7 +81,6 @@ func (i *tableCmp) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
return i, i.fetchLogs()
case pubsub.Event[logging.Log]:
- // Only handle created events
if msg.Type == logging.EventLogCreated {
// Add the new log to our list
i.logs = append([]logging.Log{msg.Payload}, i.logs...)