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
All checks were successful
Build Formula11 Docker Image / pocketbase-docker (push) Successful in 27s
This commit is contained in:
@ -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}
|
||||||
|
Reference in New Issue
Block a user