fix: enterAllowed on all <Submit />

This commit is contained in:
Sebastian Pravda 2023-02-04 16:05:30 +01:00
parent f43c03e1c3
commit 74bade7450
No known key found for this signature in database
GPG key ID: F3BC84F08EFA3F57
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@
</span> </span>
</div> </div>
<div class="mt-8 w-4/5 lg:w-3/5"> <div class="mt-8 w-4/5 lg:w-3/5">
<Submit value={$LL.input.submit()} on:click={login} /> <Submit enterAllowed={true} value={$LL.input.submit()} on:click={login} />
</div> </div>
</div> </div>
</SplitLayout> </SplitLayout>

View file

@ -32,7 +32,7 @@
/> />
</div> </div>
<div class="mt-8 w-4/5 lg:w-3/5"> <div class="mt-8 w-4/5 lg:w-3/5">
<Submit on:click={redirectToCode} value={$LL.input.submit()} /> <Submit enterAllowed={true} on:click={redirectToCode} value={$LL.input.submit()} />
</div> </div>
</div> </div>
</SplitLayout> </SplitLayout>