diff options
| author | adamdottv <[email protected]> | 2025-05-14 07:47:15 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-05-14 07:47:15 -0500 |
| commit | f7849c2d59d335c91d6ad079cabcda98c8b610f8 (patch) | |
| tree | cef1c17b4f9291c6daf659375c733ed0eded6c23 /internal/tui/components/logs/table.go | |
| parent | 463002185b18955583af0c8695648c2ae03fe03f (diff) | |
| download | opencode-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.go | 1 |
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...) |
