This commit is contained in:
Dean 2024-02-22 15:36:54 +00:00
parent c0d1b31ba2
commit 2bcf5ebe3a
1 changed files with 4 additions and 2 deletions

View File

@ -46,6 +46,7 @@
} }
</script> </script>
<!-- svelte-ignore a11y-click-events-have-key-events -->
<ConfirmDialog <ConfirmDialog
bind:this={deletionModal} bind:this={deletionModal}
title="Delete app" title="Delete app"
@ -54,9 +55,10 @@
onCancel={() => (deletionConfirmationAppName = null)} onCancel={() => (deletionConfirmationAppName = null)}
disabled={deletionConfirmationAppName !== appName || deleting} disabled={deletionConfirmationAppName !== appName || deleting}
> >
<!-- svelte-ignore a11y-click-events-have-key-events -->
Are you sure you want to delete Are you sure you want to delete
<b class="app-name" on:click={copyName}>{appName}</b>? <b class="app-name" role="button" tabindex={-1} on:click={copyName}>
{appName}
</b>?
<br /> <br />
Please enter the app name below to confirm. Please enter the app name below to confirm.
<br /><br /> <br /><br />