Fix "for" label on sequence symbol

This commit is contained in:
Face 2024-08-08 23:39:35 -07:00 committed by GStudiosX
parent 2fe0a88ccf
commit 10673a927a
2 changed files with 2 additions and 4 deletions

View File

@ -1,7 +1,5 @@
<script lang="ts">
import type { Writable } from 'svelte/store';
import * as RadioGroup from '$lib/components/ui/radio-group/index.js';
import { Label } from '@/components/ui/label';
import { Input } from '@/components/ui/input';
export let isButtonDisabled: Writable<boolean>;

View File

@ -22,11 +22,11 @@
</div>
<div class="flex items-center space-x-2">
<RadioGroup.Item value="wrong3" id="r3" on:click={() => ($isButtonDisabled = false)} />
<Label for="r2"></Label>
<Label for="r3"></Label>
</div>
<div class="flex items-center space-x-2">
<RadioGroup.Item value="idfk" id="r4" on:click={() => ($isButtonDisabled = false)} />
<Label for="r2">i have no fucking idea</Label>
<Label for="r4">i have no fucking idea</Label>
</div>
<RadioGroup.Input name="spacing" />
</RadioGroup.Root>