Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb93db1c

Browse files
authored
fix: site: replace CirclePlayIcon with PlayIcon (#18549)
1 parente443f86 commitb93db1c

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
letmainButton=(
8484
<TopbarButtononClick={()=>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)

[8]ページ先頭

©2009-2025 Movatter.jp