Disable reset button if SMTP not configured

This commit is contained in:
Mel O'Hagan 2022-05-12 17:25:49 +01:00
parent bcf3e1ef1d
commit 0e61fe34e0
1 changed files with 8 additions and 2 deletions

View File

@ -68,7 +68,7 @@
}
}
async function clearSmtp() {
async function deleteSmtp() {
// Delete the SMTP config
try {
await API.deleteConfig({
@ -178,7 +178,13 @@
</Layout>
<div class="spectrum-ButtonGroup spectrum-Settings-buttonGroup">
<Button cta on:click={saveSmtp}>Save</Button>
<Button secondary on:click={clearSmtp}>Clear</Button>
<Button
secondary
on:click={deleteSmtp}
disabled={!$admin.checklist.smtp.checked}
>
Reset
</Button>
</div>
<Divider />
<Layout gap="XS" noPadding>