diff options
| author | Luke Parker <[email protected]> | 2026-03-05 09:31:48 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-03-04 23:31:48 +0000 |
| commit | 7f7e622426e89650f152401179607d6bf79aa3ae (patch) | |
| tree | 0039f86e90902b86a802f0e4594f4950bdedc04a | |
| parent | 27447bab2614e1beca999da0b1dfc5fd9e0ecf3b (diff) | |
| download | opencode-7f7e622426e89650f152401179607d6bf79aa3ae.tar.gz opencode-7f7e622426e89650f152401179607d6bf79aa3ae.zip | |
dont let dax touch the ui (#16060)
| -rw-r--r-- | packages/opencode/src/cli/cmd/tui/routes/session/index.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx index 40e8fbbed..11d30ff78 100644 --- a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx +++ b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx @@ -1878,8 +1878,10 @@ function Read(props: ToolProps<typeof ReadTool>) { </InlineTool> <For each={loaded()}> {(filepath) => ( - <box paddingLeft={5}> - <text fg={theme.textMuted}>⤷ Loaded {normalizePath(filepath)}</text> + <box paddingLeft={3}> + <text paddingLeft={3} fg={theme.textMuted}> + ↳ Loaded {normalizePath(filepath)} + </text> </box> )} </For> |
