Lint
This commit is contained in:
parent
c0d1b31ba2
commit
2bcf5ebe3a
|
@ -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 />
|
||||||
|
|
Loading…
Reference in New Issue