implementing dependency management in tui

This commit is contained in:
viljarb
2026-03-24 19:57:45 +01:00
parent 47f1cf8d09
commit 802d379de8
12 changed files with 701 additions and 15 deletions

View File

@@ -114,6 +114,10 @@ func (m *Model) handleKeyPressMsg(msg tea.KeyPressMsg) tea.Cmd {
if selected := m.FocusedIssueList().SelectedItem(); selected.ID != "" {
cmd = m.startEditAssignee(selected)
}
case m.notInModalMsgWithKey(msg, m.keyMap.ManageDependencies):
if selected := m.FocusedIssueList().SelectedItem(); selected.ID != "" {
cmd = m.startManageDependencies(selected)
}
case m.notInModalMsgWithKey(msg, m.keyMap.AddIssue):
cmd = m.startCreateIssue()