Skip to content

Commit 4eb5703

Browse files
authored
🤖 fix: swap git diff indicator and delete button in workspace preview (#1027)
_Generated with `mux`_
1 parent 2ad03c4 commit 4eb5703

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

‎src/browser/components/WorkspaceListItem.tsx‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -192,13 +192,6 @@ const WorkspaceListItemInner: React.FC<WorkspaceListItemProps> = ({
192192
<div className="flex items-center gap-1">
193193
{!isCreating && !isEditing && (
194194
<>
195-
<GitStatusIndicator
196-
gitStatus={gitStatus}
197-
workspaceId={workspaceId}
198-
tooltipPosition="right"
199-
isWorking={canInterrupt}
200-
/>
201-
202195
<Tooltip>
203196
<TooltipTrigger asChild>
204197
<button
@@ -215,6 +208,13 @@ const WorkspaceListItemInner: React.FC<WorkspaceListItemProps> = ({
215208
</TooltipTrigger>
216209
<TooltipContent align="end">Remove workspace</TooltipContent>
217210
</Tooltip>
211+
212+
<GitStatusIndicator
213+
gitStatus={gitStatus}
214+
workspaceId={workspaceId}
215+
tooltipPosition="right"
216+
isWorking={canInterrupt}
217+
/>
218218
</>
219219
)}
220220
</div>

0 commit comments

Comments
 (0)