fix: misc.

This commit is contained in:
Darshan
2025-05-31 12:51:34 +05:30
parent ff2c5f269c
commit 03cd6a71d3
3 changed files with 9 additions and 4 deletions
@@ -114,7 +114,9 @@ APPWRITE_PUBLIC_ENDPOINT: "${sdk.forProject(page.params.region, page.params.proj
title={key}
imageRadius="s"
name="framework"
bind:group={platform} />
bind:group={platform}
disabled={isCreatingPlatform || isPlatformCreated}
/>
{/each}
</Layout.Grid>
@@ -171,7 +171,9 @@ static const String APPWRITE_PUBLIC_ENDPOINT = "${sdk.forProject(page.params.reg
title={key}
imageRadius="s"
name="framework"
bind:group={platform} />
bind:group={platform}
disabled={isCreatingPlatform || isPlatformCreated}
/>
{/each}
</Layout.Grid>
@@ -133,7 +133,7 @@ const APPWRITE_PUBLIC_ENDPOINT = "${sdk.forProject(page.params.region, page.para
<Form onSubmit={createReactNativePlatform}>
<Layout.Stack gap="xxl">
<!-- Step One -->
<Layout.Stack gap="l">
<Layout.Stack gap="l" direction="row">
{#each Object.entries(platforms) as [key, value]}
<Pink2Card.Selector
{value}
@@ -141,7 +141,8 @@ const APPWRITE_PUBLIC_ENDPOINT = "${sdk.forProject(page.params.region, page.para
title={key}
imageRadius="s"
name="framework"
bind:group={platform} />
bind:group={platform}
disabled={isCreatingPlatform || isPlatformCreated} />
{/each}
</Layout.Stack>