Compare commits

..

No commits in common. "main" and "v1.1.0" have entirely different histories.
main ... v1.1.0

2 changed files with 1 additions and 6 deletions

View file

@ -1,5 +0,0 @@
#!/bin/sh
set -e
go build -o ./bin/gemlog-cli

View file

@ -39,7 +39,7 @@ func (m EntryListPageModel) Update(msg tea.Msg, active bool, ctx *context) (Entr
m.cursor--
}
case "down", "j":
if m.cursor < len(m.entries)-1 {
if m.cursor < len(actions)-1 {
m.cursor++
}
case "left", "h":