adding blocked status to tui

This commit is contained in:
viljarb
2026-03-12 13:18:15 +01:00
parent 5b0c69e671
commit 1f98308d9b
9 changed files with 80 additions and 18 deletions

View File

@@ -70,7 +70,7 @@ func (d *Model) handleKeyMsg(msg tea.KeyMsg) tea.Cmd {
d.updateDetailFromSelection()
}
case !d.IsInModal() && key.Matches(msg, d.keyMap.MoveColumnRight):
if d.focusedColumn < 2 {
if d.focusedColumn < 3 {
d.focusedColumn++
d.updateDetailFromSelection()
}