clear button

main^2
Midnight 3 years ago
parent 319e2c9b32
commit 988b394643

@ -181,6 +181,11 @@
save(); save();
} }
function clear() {
commissions = [];
save();
}
onMount(() => { onMount(() => {
setup(); setup();
}); });
@ -196,14 +201,11 @@
</section> </section>
<section class="container bg-slate-800 rounded-lg shadow-lg p-5 flex flex-col w-full gap-10"> <section class="container bg-slate-800 rounded-lg shadow-lg p-5 flex flex-col w-full gap-10">
<div class="flex justify-between -ml-2 -mr-2"> <div class="flex gap-1 flex-wrap -ml-2 -mr-2">
<div class="w-full flex gap-3"> <span class="flex-grow"><Button added_classes="w-full" on:click={createNew}> Add Commission</Button></span>
<span><Button on:click={createNew}> Add Commission</Button></span>
</div>
<div class="w-full flex justify-end gap-3">
<span><Button on:click={save}>💾 Save to Clipboard</Button></span> <span><Button on:click={save}>💾 Save to Clipboard</Button></span>
<span><Button on:click={load}>📋 Load from Clipboard</Button></span> <span><Button on:click={load}>📋 Load from Clipboard</Button></span>
</div> <span><Button on:click={clear}> Clear</Button></span>
</div> </div>
<div class="flex items-center justify-between"> <div class="flex items-center justify-between">

Loading…
Cancel
Save