diff options
| author | Kujtim Hoxha <[email protected]> | 2025-04-24 13:01:32 +0200 |
|---|---|---|
| committer | Kujtim Hoxha <[email protected]> | 2025-04-24 16:40:36 +0200 |
| commit | c42d94c465876b3dccfd4244b5efc15f2d3b8bf1 (patch) | |
| tree | d16e886ab605c616776bb97937eaddccbb6c1b1a /internal/tui/components/dialog | |
| parent | f879a94c95678592060b3ade1d78f69f18c5866e (diff) | |
| download | opencode-c42d94c465876b3dccfd4244b5efc15f2d3b8bf1.tar.gz opencode-c42d94c465876b3dccfd4244b5efc15f2d3b8bf1.zip | |
small fixes
Diffstat (limited to 'internal/tui/components/dialog')
| -rw-r--r-- | internal/tui/components/dialog/permission.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/tui/components/dialog/permission.go b/internal/tui/components/dialog/permission.go index 8096fd960..3c7a9a3f4 100644 --- a/internal/tui/components/dialog/permission.go +++ b/internal/tui/components/dialog/permission.go @@ -64,15 +64,15 @@ var permissionsKeys = permissionsMapping{ ), Allow: key.NewBinding( key.WithKeys("a"), - key.WithHelp("a", "[a]llow"), + key.WithHelp("a", "allow"), ), AllowSession: key.NewBinding( key.WithKeys("s"), - key.WithHelp("s", "allow for [s]ession"), + key.WithHelp("s", "allow for session"), ), Deny: key.NewBinding( key.WithKeys("d"), - key.WithHelp("d", "[d]eny"), + key.WithHelp("d", "deny"), ), Tab: key.NewBinding( key.WithKeys("tab"), @@ -171,7 +171,7 @@ func (p *permissionDialogCmp) renderButtons() string { } allowButton := allowStyle.Padding(0, 1).Render("Allow (a)") - allowSessionButton := allowSessionStyle.Padding(0, 1).Render("Allow for session (A)") + allowSessionButton := allowSessionStyle.Padding(0, 1).Render("Allow for session (s)") denyButton := denyStyle.Padding(0, 1).Render("Deny (d)") content := lipgloss.JoinHorizontal( |
