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.
- package/dashboard/public/app.js +3 -3
- package/package.json +1 -1
package/dashboard/public/app.js
CHANGED
|
@@ -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 >=
|
|
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:
|
|
586
|
-
if (showRepos && repoResults.length >=
|
|
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;
|