Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
go-to-k committed Aug 18, 2024
1 parent 36ed0dd commit 68e4699
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/io/ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ func (u *UI) View() string {

s += u.Keyword

s += color.CyanString(" [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]\n")
s += color.CyanString(" [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
s += "\n"

for i, choice := range u.Choices {
if u.Keyword != "" && !strings.Contains(choice, u.Keyword) {
Expand Down

0 comments on commit 68e4699

Please sign in to comment.