8000 fix: site: replace CirclePlayIcon with PlayIcon (#18549) · coder/coder@b93db1c · GitHub
[go: up one dir, main page]

Skip to content

Commit b93db1c

Browse files
authored
fix: site: replace CirclePlayIcon with PlayIcon (#18549)
1 parent e443f86 commit b93db1c

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

site/src/pages/WorkspacePage/WorkspaceActions/Buttons.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import type { Workspace, WorkspaceBuildParameter } from "api/typesGenerated";
33
import { TopbarButton } from "components/FullPageLayout/Topbar";
44
import {
55
BanIcon,
6-
CirclePlayIcon,
76
CircleStopIcon,
87
CloudIcon,
8+
PlayIcon,
99
PowerIcon,
1010
RotateCcwIcon,
1111
StarIcon,
@@ -44,7 +44,7 @@ export const UpdateButton: FC<ActionButtonProps> = ({
4444
disabled={loading}
4545
onClick={() => handleAction()}
4646
>
47-
{requireActiveVersion ? <CirclePlayIcon /> : <CloudIcon />}
47+
{requireActiveVersion ? <PlayIcon /> : <CloudIcon />}
4848
{loading ? (
4949
<>Updating&hellip;</>
5050
) : isRunning ? (
@@ -82,7 +82,7 @@ export const StartButton: FC<ActionButtonPropsWithWorkspace> = ({
8282
}) => {
8383
let mainButton = (
8484
<TopbarButton onClick={() => handleAction()} disabled={disabled || loading}>
85-
<CirclePlayIcon />
85+
<PlayIcon />
8686
{loading ? <>Starting&hellip;</> : "Start"}
8787
</TopbarButton>
8888
);

site/src/pages/WorkspacesPage/WorkspacesTable.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ import { ExternalLinkIcon, FileIcon, StarIcon } from "lucide-react";
4848
import { EllipsisVertical } from "lucide-react";
4949
import {
5050
BanIcon,
51-
CirclePlayIcon,
5251
CloudIcon,
5352
PlayIcon,
5453
RefreshCcwIcon,
@@ -573,7 +572,7 @@ const WorkspaceActionsCell: FC<WorkspaceActionsCellProps> = ({
573572
isLoading={workspaceUpdate.isUpdating}
574573
label="This template requires automatic updates on workspace startup. Contact your administrator if you want to preserve the template version."
575574
>
576-
<CirclePlayIcon />
575+
<PlayIcon />
577576
</PrimaryAction>
578577
<WorkspaceUpdateDialogs {...workspaceUpdate.dialogs} />
579578
</>
@@ -599,7 +598,7 @@ const WorkspaceActionsCell: FC<WorkspaceActionsCellProps> = ({
599598
isLoading={workspaceUpdate.isUpdating}
600599
label="This template requires automatic updates on workspace restart. Contact your administrator if you want to preserve the template version."
601600
>
602-
<CirclePlayIcon />
601+
<PlayIcon />
603602
</PrimaryAction>
604603
<WorkspaceUpdateDialogs {...workspaceUpdate.dialogs} />
605604
</>

0 commit comments

Comments
 (0)
0