fix: disable download button while running jobs, auto run generator jobs

This commit is contained in:
2026-09-12 18:22:05 +05:00
parent 35df076732
commit 0c2de3f191
5 changed files with 44 additions and 54 deletions
@@ -5,8 +5,9 @@
interface Props {
label: string;
onclick?: () => void;
disabled?: boolean;
}
let { label, onclick }: Props = $props();
let { label, onclick, disabled = false }: Props = $props();
</script>
<Button icon={Download} {label} {onclick} />
<Button icon={Download} {label} {onclick} {disabled} />