mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
Merge pull request #226 from jalajcodes/fix-4863-inpul-label-in-delete-project-modal
fix: Enter "delete" to continue label
This commit is contained in:
@@ -42,7 +42,7 @@
|
||||
<svelte:fragment slot="header">Create New Organization</svelte:fragment>
|
||||
<FormList>
|
||||
<InputText
|
||||
id="name"
|
||||
id="organization-name"
|
||||
label="Name"
|
||||
placeholder="Enter name"
|
||||
bind:value={name}
|
||||
|
||||
@@ -55,7 +55,11 @@
|
||||
placeholder="Enter email"
|
||||
autofocus={true}
|
||||
bind:value={email} />
|
||||
<InputText id="name" label="Name (optional)" placeholder="Enter name" bind:value={name} />
|
||||
<InputText
|
||||
id="member-name"
|
||||
label="Name (optional)"
|
||||
placeholder="Enter name"
|
||||
bind:value={name} />
|
||||
</FormList>
|
||||
<svelte:fragment slot="footer">
|
||||
<Button secondary on:click={() => (showCreate = false)}>Cancel</Button>
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
<InputText
|
||||
label={`Enter "${$project.name}" to continue`}
|
||||
placeholder="Enter name"
|
||||
id="name"
|
||||
id="project-name"
|
||||
autofocus
|
||||
required
|
||||
bind:value={name} />
|
||||
|
||||
Reference in New Issue
Block a user