We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e07162f commit f864156Copy full SHA for f864156
src/routes/(v2)/v2/schemasafe-types/+page.svelte
@@ -22,7 +22,7 @@
22
bind:value={$form.name}
23
aria-invalid={$errors.name ? 'true' : undefined}
24
/>
25
- {#if $errors.name}{$errors.name}{/if}
+ {#if $errors.name}<span>{$errors.name}</span>{/if}
26
27
<label for="email">E-mail</label>
28
<input
@@ -31,7 +31,7 @@
31
bind:value={$form.email}
32
aria-invalid={$errors.email ? 'true' : undefined}
33
34
- {#if $errors.email}{$errors.email}{/if}
+ {#if $errors.email}<span>{$errors.email}</span>{/if}
35
36
<div><button>Submit</button></div>
37
</form>
0 commit comments