Skip to content

Commit b64199c

Browse files
committed
fix: correctly select light/dark mode based on system colortheme
1 parent bf36b01 commit b64199c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webui/src/components/ActivityBar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const ActivityBar = () => {
3535
}
3636
});
3737

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

0 commit comments

Comments
 (0)