fix(ui): disable the delete button during PNG export

This commit is contained in:
Julien Calixte
2026-06-17 09:58:03 +02:00
parent 69932fa2bf
commit e2f76195dd

View File

@@ -57,7 +57,12 @@ function confirmDelete() {
>
Download
</button>
<button class="btn btn-ghost btn-sm" title="Delete this plan" @click="confirmingDelete = true">
<button
class="btn btn-ghost btn-sm"
:disabled="busy"
title="Delete this plan"
@click="confirmingDelete = true"
>
🗑
</button>
</header>