🚀 Feature: Add extra confirmation when deleting an organization
🔖 Feature description
When deleting a project, there is an input that requires you to input something before continuing:
This should be done for organizations too because deleting an organization will delete all projects in it. RIght now, there is only:
🎤 Pitch
These input confirmations are a helpful way to prevent people from accidentally doing something irreversibly destructive.
👀 Have you spent some time to check if this issue has been raised before?
- [X] I checked and didn't find similar issue
🏢 Have you read the Code of Conduct?
- [X] I have read the Code of Conduct
Hey please assign me this issue
@Aadish1233, thanks for your interest. To contribute, please look for issues labeled with "good first issue" or "help wanted".
@stnguyen90 I would like to work on this issue.
To implement this we can add
<FormList>
<InputText
label={`Enter "${$organization.name}" to continue`}
placeholder="Enter name"
id="organization-name"
autofocus
required
bind:value={name} />
</FormList>
and
<Button disabled={!name || name !== $organization.name} secondary submit>Delete</Button>
to deleteOrganization.svelte
can i work on this issue?