Skip to content

Commit 1ed594b

Browse files
committed
refactor
1 parent cdea1f6 commit 1ed594b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/ControlPlanes/ConnectButton.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ export default function ConnectButton(props: Props) {
5151
if (contexts.length === 1) {
5252
return (
5353
<Button
54-
icon={'disconnected'}
5554
endIcon={'navigation-right-arrow'}
5655
disabled={props.disabled}
5756
onClick={() =>

src/components/ControlPlanes/List/ControlPlaneListWorkspaceGridTile.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import {
22
Button,
3+
FlexBox,
34
Grid,
45
ObjectPageSection,
56
Panel,
@@ -125,7 +126,7 @@ export function ControlPlaneListWorkspaceGridTile({
125126
project={projectName}
126127
workspace={workspaceName}
127128
/>
128-
<span>
129+
<FlexBox justifyContent={'SpaceBetween'} gap={10}>
129130
<Button
130131
icon="delete"
131132
onClick={async () => {
@@ -137,7 +138,7 @@ export function ControlPlaneListWorkspaceGridTile({
137138
resourceName={workspaceName}
138139
resourceType={'workspaces'}
139140
/>
140-
</span>
141+
</FlexBox>
141142
</div>
142143
}
143144
noAnimation

0 commit comments

Comments
 (0)