Lib: Add placeholder to RaceCard, hint to end name with emoji
All checks were successful
Build Formula11 Docker Image / pocketbase-docker (push) Successful in 27s

This commit is contained in:
2025-03-23 19:03:17 +01:00
parent 243a020e00
commit ec56925dca

View File

@ -187,13 +187,21 @@
imgonclick={(event: Event) => modalStore.close()} imgonclick={(event: Event) => modalStore.close()}
> >
<div class="flex flex-col gap-2"> <div class="flex flex-col gap-2">
<!-- Driver name input --> <!-- Race name input -->
<Input bind:value={name_value} autocomplete="off" {labelwidth} {disabled} {required}> <Input
bind:value={name_value}
autocomplete="off"
placeholder="Has to end with an emoji"
{labelwidth}
{disabled}
{required}
>
Name Name
</Input> </Input>
<Input <Input
bind:value={step_value} bind:value={step_value}
autocomplete="off" autocomplete="off"
placeholder="The step in the race calendar"
type="number" type="number"
min={1} min={1}
max={24} max={24}
@ -206,6 +214,7 @@
<Input <Input
bind:value={pxx_value} bind:value={pxx_value}
autocomplete="off" autocomplete="off"
placeholder="The place to guess"
type="number" type="number"
min={1} min={1}
max={20} max={20}