diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json
index 1e2d85de..cf87614b 100644
--- a/src-tauri/tauri.conf.json
+++ b/src-tauri/tauri.conf.json
@@ -61,6 +61,7 @@
"shortDescription": "Play with APIs, intuitively",
"targets": [
"deb",
+ "rpm",
"appimage",
"nsis",
"app",
diff --git a/src-web/components/MoveToWorkspaceDialog.tsx b/src-web/components/MoveToWorkspaceDialog.tsx
index eb7793f6..587f2223 100644
--- a/src-web/components/MoveToWorkspaceDialog.tsx
+++ b/src-web/components/MoveToWorkspaceDialog.tsx
@@ -32,7 +32,7 @@ export function MoveToWorkspaceDialog({ onDone, request, activeWorkspaceId }: Pr
return (
);
diff --git a/src-web/components/Sidebar.tsx b/src-web/components/Sidebar.tsx
index 28dbf0b7..f0735d6a 100644
--- a/src-web/components/Sidebar.tsx
+++ b/src-web/components/Sidebar.tsx
@@ -833,8 +833,8 @@ function SidebarItem({
},
{
key: 'moveWorkspace',
- label: 'Change Workspace',
- leftSlot: ,
+ label: 'Move',
+ leftSlot: ,
hidden: workspaces.length <= 1,
onSelect: moveToWorkspace.mutate,
},
diff --git a/src-web/components/core/Icon.tsx b/src-web/components/core/Icon.tsx
index 04a5a33d..f5f62231 100644
--- a/src-web/components/core/Icon.tsx
+++ b/src-web/components/core/Icon.tsx
@@ -7,7 +7,9 @@ const icons = {
alert: lucide.AlertTriangleIcon,
archive: lucide.ArchiveIcon,
arrowBigDownDash: lucide.ArrowBigDownDashIcon,
+ arrowRightCircle: lucide.ArrowRightCircleIcon,
arrowBigLeftDash: lucide.ArrowBigLeftDashIcon,
+ arrowBigRight: lucide.ArrowBigRightIcon,
arrowBigRightDash: lucide.ArrowBigRightDashIcon,
arrowBigUpDash: lucide.ArrowBigUpDashIcon,
arrowDown: lucide.ArrowDownIcon,
diff --git a/src-web/hooks/useMoveToWorkspace.tsx b/src-web/hooks/useMoveToWorkspace.tsx
index 654b44ae..6a90ebfc 100644
--- a/src-web/hooks/useMoveToWorkspace.tsx
+++ b/src-web/hooks/useMoveToWorkspace.tsx
@@ -18,7 +18,7 @@ export function useMoveToWorkspace(id: string) {
dialog.show({
id: 'change-workspace',
- title: 'Change Workspace',
+ title: 'Move Workspace',
size: 'sm',
render: ({ hide }) => (