1
0
Fork 0
mirror of synced 2024-08-18 03:21:29 +12:00

Disable reset button if SMTP not configured

This commit is contained in:
Mel O'Hagan 2022-05-12 17:25:49 +01:00
parent db2cfd077f
commit 1e33d3601e

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>