diff options
| author | adamdottv <[email protected]> | 2025-05-12 10:45:03 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-05-12 10:45:03 -0500 |
| commit | 8cbfc581b5243aece96d32fc97c72ada5df3ae54 (patch) | |
| tree | f7a6c45d6ea3f767526e37f0104f020da9481ffe /internal/tui/page | |
| parent | 4bb350a09ba5c88a830f4ab07fcc99b4febda0dc (diff) | |
| download | opencode-8cbfc581b5243aece96d32fc97c72ada5df3ae54.tar.gz opencode-8cbfc581b5243aece96d32fc97c72ada5df3ae54.zip | |
chore: cleanup
Diffstat (limited to 'internal/tui/page')
| -rw-r--r-- | internal/tui/page/logs.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/tui/page/logs.go b/internal/tui/page/logs.go index 1495de8cf..b0e20ff00 100644 --- a/internal/tui/page/logs.go +++ b/internal/tui/page/logs.go @@ -196,7 +196,7 @@ func (p *logsPage) Init() tea.Cmd { var cmds []tea.Cmd cmds = append(cmds, p.table.Init()) cmds = append(cmds, p.details.Init()) - + // Send a key down and then key up to select the first row // This ensures the details pane is populated when returning to the logs page cmds = append(cmds, func() tea.Msg { @@ -205,7 +205,7 @@ func (p *logsPage) Init() tea.Cmd { cmds = append(cmds, func() tea.Msg { return tea.KeyMsg{Type: tea.KeyUp} }) - + return tea.Batch(cmds...) } |
