Skip to content

Commit 6df8903

Browse files
committed
Add status role
1 parent 81eb20e commit 6df8903

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

site/src/components/WorkspaceStats/WorkspaceStats.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,9 @@ export const WorkspaceStats: React.FC<WorkspaceStatsProps> = ({ workspace }) =>
7878
<div className={styles.statItem}>
7979
<span className={styles.statsLabel}>Status</span>
8080
<span className={styles.statsValue}>
81-
<span style={{ color: status.color }}>{status.status}</span>
81+
<span style={{ color: status.color }} role="status">
82+
{status.status}
83+
</span>
8284
</span>
8385
</div>
8486
<div className={styles.statsDivider} />

0 commit comments

Comments
 (0)