diff options
| author | kavin <[email protected]> | 2025-11-29 13:22:20 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-11-29 14:22:20 -0600 |
| commit | 1854d85ccca9887068b641b16c296a43b98e6f7c (patch) | |
| tree | 3ecd32878643aa3b90fbc2aa7706a4956e088116 /packages | |
| parent | 2c4d1fb8b44b1a421aef59f5f6bdb446965d6b44 (diff) | |
| download | opencode-1854d85ccca9887068b641b16c296a43b98e6f7c.tar.gz opencode-1854d85ccca9887068b641b16c296a43b98e6f7c.zip | |
fix(tui): add missing fg color to permission keybind hints (#4899)
Co-authored-by: Github Action <[email protected]>
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/opencode/src/cli/cmd/tui/routes/session/index.tsx | 6 |
1 files changed, 3 insertions, 3 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 b6e363c86..1540d8bac 100644 --- a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx +++ b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx @@ -1201,15 +1201,15 @@ function ToolPart(props: { last: boolean; part: ToolPart; message: AssistantMess <box gap={1}> <text fg={theme.text}>Permission required to run this tool:</text> <box flexDirection="row" gap={2}> - <text> + <text fg={theme.text}> <b>enter</b> <span style={{ fg: theme.textMuted }}> accept</span> </text> - <text> + <text fg={theme.text}> <b>a</b> <span style={{ fg: theme.textMuted }}> accept always</span> </text> - <text> + <text fg={theme.text}> <b>d</b> <span style={{ fg: theme.textMuted }}> deny</span> </text> |
