Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 62a20e8

Browse files
chore(site): ignore deletion date on chromatic (coder#11372)
1 parent a1341ee commit 62a20e8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

site/src/pages/WorkspacePage/WorkspaceTopbar/WorkspaceTopbar.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,10 @@ export const WorkspaceTopbar = (props: WorkspaceProps) => {
185185
title="Schedule settings"
186186
css={{ color: "inherit" }}
187187
>
188-
Deletion on {new Date(workspace.deleting_at!).toLocaleString()}
188+
Deletion on{" "}
189+
<span data-chromatic="ignore">
190+
{new Date(workspace.deleting_at!).toLocaleString()}
191+
</span>
189192
</Link>
190193
</TopbarData>
191194
)}

0 commit comments

Comments
 (0)