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:
Torsten Dittmann
2023-01-27 13:28:13 +01:00
committed by GitHub
3 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -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} />