Thanks to visit codestin.com Credit goes to github.com
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 889003f commit e4bdb43Copy full SHA for e4bdb43
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