mirror of
https://github.com/immich-app/immich.git
synced 2024-12-29 15:11:58 +00:00
fix(web): confirm button is disabled if two dialogs are shown subsequently (#10440)
This commit is contained in:
parent
1b67ea2d91
commit
e8994d9ffd
1 changed files with 1 additions and 4 deletions
|
@ -16,10 +16,7 @@
|
||||||
export let onCancel: () => void;
|
export let onCancel: () => void;
|
||||||
export let onConfirm: () => void;
|
export let onConfirm: () => void;
|
||||||
|
|
||||||
let isConfirmButtonDisabled = false;
|
|
||||||
|
|
||||||
const handleConfirm = () => {
|
const handleConfirm = () => {
|
||||||
isConfirmButtonDisabled = true;
|
|
||||||
onConfirm();
|
onConfirm();
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -37,7 +34,7 @@
|
||||||
{cancelText}
|
{cancelText}
|
||||||
</Button>
|
</Button>
|
||||||
{/if}
|
{/if}
|
||||||
<Button color={confirmColor} fullwidth on:click={handleConfirm} disabled={disabled || isConfirmButtonDisabled}>
|
<Button color={confirmColor} fullwidth on:click={handleConfirm} {disabled}>
|
||||||
{confirmText}
|
{confirmText}
|
||||||
</Button>
|
</Button>
|
||||||
</svelte:fragment>
|
</svelte:fragment>
|
||||||
|
|
Loading…
Reference in a new issue