Skip to content

Commit

Permalink
fix: correctly select light/dark mode based on system colortheme
Browse files Browse the repository at this point in the history
  • Loading branch information
garethgeorge committed Jan 5, 2024
1 parent bf36b01 commit b64199c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui/src/components/ActivityBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const ActivityBar = () => {
}
});

return <span>{details.map((details, idx) => {
return <span style={{ color: "white" }}>{details.map((details, idx) => {
return <span key={idx}>{details.displayName} in progress for plan {details.op.planId} to {details.op.repoId} for {formatDuration(details.details.duration)}</span>
})}</span>
}

0 comments on commit b64199c

Please sign in to comment.