8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98c89f8 commit 57c6d88Copy full SHA for 57c6d88
site/src/components/WorkspaceStats/WorkspaceStats.tsx
@@ -52,7 +52,9 @@ export const WorkspaceStats: React.FC<WorkspaceStatsProps> = ({ workspace }) =>
52
<div className={styles.statsDivider} />
53
<div className={styles.statItem}>
54
<span className={styles.statsLabel}>Last built</span>
55
- <span className={styles.statsValue}>{dayjs().to(dayjs(workspace.latest_build.created_at))}</span>
+ <span className={styles.statsValue} data-chromatic="ignore">
56
+ {dayjs().to(dayjs(workspace.latest_build.created_at))}
57
+ </span>
58
</div>
59
60
)
0 commit comments