Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions site/src/pages/WorkspacePage/WorkspaceActions/Buttons.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import {
BanIcon,
CloudIcon,
PlayIcon,
PowerIcon,
RotateCcwIcon,
Expand Down Expand Up @@ -41,7 +40,7 @@ export const UpdateButton: FC<ActionButtonProps> = ({
disabled={loading}
onClick={() => handleAction()}
>
{requireActiveVersion ? <PlayIcon /> : <CloudIcon />}
{requireActiveVersion ? <PlayIcon /> : <RotateCcwIcon />}
{loading ? (
<>Updating&hellip;</>
) : isRunning ? (
Expand Down
4 changes: 2 additions & 2 deletions site/src/pages/WorkspacesPage/WorkspacesPageView.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CloudIcon, PlayIcon, SquareIcon, TrashIcon } from "lucide-react";
import { PlayIcon, RotateCcwIcon, SquareIcon, TrashIcon } from "lucide-react";
import type { FC } from "react";
import type { UseQueryResult } from "react-query";
import { hasError, isApiValidationError } from "#/api/errors";
Expand Down Expand Up @@ -171,7 +171,7 @@ export const WorkspacesPageView: FC<WorkspacesPageViewProps> = ({
</DropdownMenuItem>
<DropdownMenuSeparator />
<DropdownMenuItem onClick={onBatchUpdateTransition}>
<CloudIcon
<RotateCcwIcon
className="size-icon-sm"
data-testid="bulk-action-update"
/>{" "}
Expand Down
6 changes: 3 additions & 3 deletions site/src/pages/WorkspacesPage/WorkspacesTable.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import {
BanIcon,
CircleAlertIcon,
CloudIcon,
EllipsisVerticalIcon,
ExternalLinkIcon,
FileIcon,
PlayIcon,
RefreshCcwIcon,
RotateCcwIcon,
SquareTerminalIcon,
StarIcon,
} from "lucide-react";
Expand Down Expand Up @@ -513,7 +513,7 @@ const WorkspaceActionsCell: FC<WorkspaceActionsCellProps> = ({
isLoading={workspaceUpdate.isUpdating}
label="Update and start workspace"
>
<CloudIcon />
<RotateCcwIcon />
</PrimaryAction>
<WorkspaceUpdateDialogs {...workspaceUpdate.dialogProps} />
</>
Expand All @@ -539,7 +539,7 @@ const WorkspaceActionsCell: FC<WorkspaceActionsCellProps> = ({
isLoading={workspaceUpdate.isUpdating}
label="Update and restart workspace"
>
<CloudIcon />
<RotateCcwIcon />
</PrimaryAction>
<WorkspaceUpdateDialogs {...workspaceUpdate.dialogProps} />
</>
Expand Down
Loading