Skip to content

Commit 6f902e0

Browse files
committed
add outdated suffix to oudated workspcaes
1 parent 42b3539 commit 6f902e0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

site/src/pages/WorkspacesPage/WorkspacesPageView.stories.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,26 +68,26 @@ const workspaces = WorkspaceStatuses.map((status) =>
6868
// Additional Workspaces depending on time
6969
const additionalWorkspaces: Record<string, Workspace> = {
7070
today: createWorkspace(
71-
"running",
71+
"running-outdated",
7272
"running",
7373
true,
7474
dayjs().subtract(3, "hour").toString(),
7575
),
7676
old: createWorkspace(
77-
"old",
77+
"old-outdated",
7878
"running",
7979
true,
8080
dayjs().subtract(1, "week").toString(),
8181
),
8282
oldStopped: createWorkspace(
83-
"old-stopped",
83+
"old-stopped-outdated",
8484
"stopped",
8585
true,
8686
dayjs().subtract(1, "week").toString(),
8787
),
8888
oldRequireActiveVersion: {
8989
...createWorkspace(
90-
"old-require-active-version",
90+
"old-require-active-version-outdated",
9191
"running",
9292
true,
9393
dayjs().subtract(1, "week").toString(),
@@ -96,15 +96,15 @@ const additionalWorkspaces: Record<string, Workspace> = {
9696
},
9797
oldStoppedRequireActiveVersion: {
9898
...createWorkspace(
99-
"old-stopped-require-active-version",
99+
"old-stopped-require-active-version-outdated",
100100
"stopped",
101101
true,
102102
dayjs().subtract(1, "week").toString(),
103103
),
104104
template_require_active_version: true,
105105
},
106106
veryOld: createWorkspace(
107-
"very-old-running",
107+
"very-old-running-outdated",
108108
"running",
109109
true,
110110
dayjs().subtract(1, "month").subtract(4, "day").toString(),

0 commit comments

Comments
 (0)