Button Oben Funktioniert wieder

This commit is contained in:
Moritz Utcke
2025-02-20 21:27:40 +11:00
parent 927f0157be
commit b283013116
2 changed files with 14 additions and 1 deletions

View File

@@ -16,6 +16,8 @@
export let aufnahme: AufnahmeClient;
export let ausweisart: Enums.Ausweisart
export let showWeiter: boolean = true;
let ausweistyp: AusweisTyp = Enums.AusweisTyp.Standard;
async function ausweisAbschicken() {
@@ -159,6 +161,7 @@ sm:grid-cols-[1fr_min-content_min-content_min-content] sm:justify-self-end sm:mt
>Später Weitermachen
</button>
{#if showWeiter}
<div>
<Overlay bind:hidden={loginOverlayHidden}>
<div class="bg-white w-full max-w-screen-sm py-8">
@@ -168,4 +171,5 @@ sm:grid-cols-[1fr_min-content_min-content_min-content] sm:justify-self-end sm:mt
<button on:click={ausweisAbschicken} type="button" class="button" data-cy="weiter">Weiter</button>
</div>
{/if}
</div>