Skip to content

Commit 9a5f936

Browse files
committed
Fix: disable checkbox when region is not available OR disabled
1 parent fc6fe83 commit 9a5f936

File tree

1 file changed

+1
-1
lines changed
  • src/routes/(console)/organization-[organization]/wizard

1 file changed

+1
-1
lines changed

src/routes/(console)/organization-[organization]/wizard/step2.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
name="region"
8787
bind:group={$createProject.region}
8888
value={region.$id}
89-
disabled={!region.available}
89+
disabled={!region.available || region.disabled}
9090
autofocus={index === 0}>
9191
<div
9292
class="u-flex u-flex-vertical u-gap-8 u-justify-main-center u-cross-center u-margin-inline-auto">

0 commit comments

Comments
 (0)