We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43a441f commit 721957dCopy full SHA for 721957d
site/src/components/WorkspaceBuildProgress/WorkspaceBuildProgress.tsx
@@ -108,6 +108,7 @@ export const WorkspaceBuildProgress: FC<WorkspaceBuildProgressProps> = ({
108
return (
109
<div className={styles.stack}>
110
<LinearProgress
111
+ data-chromatic="ignore"
112
value={progressValue !== undefined ? progressValue : 0}
113
variant={
114
// There is an initial state where progressValue may be undefined
@@ -125,7 +126,9 @@ export const WorkspaceBuildProgress: FC<WorkspaceBuildProgressProps> = ({
125
126
/>
127
<div className={styles.barHelpers}>
128
<div className={styles.label}>{`Build ${job.status}`}</div>
- <div className={styles.label}>{progressText}</div>
129
+ <div className={styles.label} data-chromatic="ignore">
130
+ {progressText}
131
+ </div>
132
</div>
133
134
)
0 commit comments