taskplane 0.5.5 → 0.5.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -554,7 +554,7 @@ function renderMergeAgents(batch, tmuxSessions) {
554
554
  // Repo filtering: if a repo is selected and this merge has repoResults,
555
555
  // check if the selected repo is among them
556
556
  const repoResults = mr.repoResults || [];
557
- if (selectedRepo && showRepos && repoResults.length >= 2) {
557
+ if (selectedRepo && showRepos && repoResults.length >= 1) {
558
558
  const hasSelectedRepo = repoResults.some(rr => rr.repoId === selectedRepo);
559
559
  if (!hasSelectedRepo) continue;
560
560
  }
@@ -582,8 +582,8 @@ function renderMergeAgents(batch, tmuxSessions) {
582
582
  html += `<td style="font-size:0.8rem;color:var(--text-muted);">${mr.failureReason ? escapeHtml(mr.failureReason) : "—"}</td>`;
583
583
  html += `</tr>`;
584
584
 
585
- // Per-repo sub-rows: only when repoResults has 2+ entries (workspace mode)
586
- if (showRepos && repoResults.length >= 2) {
585
+ // Per-repo sub-rows: show when workspace mode has repo results
586
+ if (showRepos && repoResults.length >= 1) {
587
587
  const displayRepos = selectedRepo
588
588
  ? repoResults.filter(rr => rr.repoId === selectedRepo)
589
589
  : repoResults;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taskplane",
3
- "version": "0.5.5",
3
+ "version": "0.5.6",
4
4
  "description": "AI agent orchestration for pi — parallel task execution with checkpoint discipline",
5
5
  "keywords": [
6
6
  "pi-package",