TUI: Tab opens <cwd>/todo.txt (project root) instead of .pi/dashboard/tasks/

This commit is contained in:
2026-08-04 12:08:35 +10:00
parent a0d25aa108
commit 181d035b27

View File

@@ -644,7 +644,7 @@ func openTuxedo(m model) tea.Cmd {
agent = m.view[row] agent = m.view[row]
haveAgent = true haveAgent = true
if agent.Cwd != "" { if agent.Cwd != "" {
todoPath = agent.Cwd + "/.pi/dashboard/tasks/todo.txt" todoPath = filepath.Join(agent.Cwd, "todo.txt")
} }
} }
} }