Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/support/dashboardHtml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,7 @@ const DASHBOARD_HTML = `<!DOCTYPE html>
taskIds.sort((a, b) => (taskStartMap.get(b) || 0) - (taskStartMap.get(a) || 0));

let html = '<button class="log-tab' + (selectedLogTaskId === null ? ' active' : '')
+ '" data-task="all" onclick="selectLogTab(null)">ALL</button>';
+ '" data-task="all" onclick="selectLogTab(null)">All</button>';

for (const tid of taskIds) {
const info = taskTitleMap.get(tid);
Expand Down
7 changes: 5 additions & 2 deletions web/static/css/supervisor.css
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,11 @@ body.page-supervisor {
}
.issue-row:last-child, .pr-row:last-child { border-bottom: none; }
.issue-row.issue-backlog { opacity: 0.5; }
.git-info { display: flex; gap: var(--space-2); align-items: center; font-size: var(--text-xs); color: var(--fg-muted); }
.git-branch-name { color: var(--info); font-family: var(--font-mono); }
/* One line, always: a long branch name is cut with an ellipsis rather than
wrapped into the counts beside it. */
.git-info { display: flex; gap: var(--space-2); align-items: center; min-width: 0; font-size: var(--text-xs); color: var(--fg-muted); white-space: nowrap; }
.git-info > * { flex-shrink: 0; }
.git-branch-name { flex: 0 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; color: var(--info); font-family: var(--font-mono); }
.git-dirty { color: var(--warning); }
.git-sync { color: var(--fg-muted); }
.pr-num { min-width: 36px; color: var(--info); font-family: var(--font-mono); }
Expand Down
Loading