Skip to content

Commit 0a2fa23

Browse files
committed
Move 'Back to organization' to left side of dialog footer
https://claude.ai/code/session_01FM1SsvjYziX2rRutmoAfGF
1 parent 3c2e627 commit 0a2fa23

1 file changed

Lines changed: 13 additions & 11 deletions

File tree

src/routes/(console)/project-[region]-[project]/pausedProjectModal.svelte

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -91,20 +91,22 @@
9191
</Layout.Stack>
9292

9393
<svelte:fragment slot="footer">
94-
<Layout.Stack direction="row" justifyContent="flex-end">
94+
<Layout.Stack direction="row" justifyContent="space-between">
9595
<Button text disabled={loading} on:click={handleBackToOrganization}>
9696
Back to organization
9797
</Button>
98-
<Button secondary disabled={loading} on:click={handleResume}>
99-
{#if loading}
100-
Restoring...
101-
{:else}
102-
Restore project
103-
{/if}
104-
</Button>
105-
<Button disabled={loading} on:click={handleUpgrade}>
106-
Upgrade
107-
</Button>
98+
<Layout.Stack direction="row" justifyContent="flex-end">
99+
<Button secondary disabled={loading} on:click={handleResume}>
100+
{#if loading}
101+
Restoring...
102+
{:else}
103+
Restore project
104+
{/if}
105+
</Button>
106+
<Button disabled={loading} on:click={handleUpgrade}>
107+
Upgrade
108+
</Button>
109+
</Layout.Stack>
108110
</Layout.Stack>
109111
</svelte:fragment>
110112
</Modal>

0 commit comments

Comments
 (0)