mirror of
https://github.com/danbulant/Portfolio
synced 2026-06-09 09:41:37 +00:00
fix: svelte check
This commit is contained in:
parent
c5ac32d1fd
commit
afaf949c08
1 changed files with 5 additions and 2 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import type { School } from '$lib/stores/candidate';
|
import type { School } from '$lib/stores/candidate';
|
||||||
import AutoComplete from 'simple-svelte-autocomplete';
|
// TODO
|
||||||
|
// import AutoComplete from 'simple-svelte-autocomplete';
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
// import schoollistString from '$lib/assets/schoollist.txt';
|
// import schoollistString from '$lib/assets/schoollist.txt';
|
||||||
|
|
||||||
|
|
@ -23,7 +24,9 @@ $: selectedSchool.name = schoolName;
|
||||||
<span>
|
<span>
|
||||||
Selected school: {selectedSchool.name}
|
Selected school: {selectedSchool.name}
|
||||||
</span>
|
</span>
|
||||||
<AutoComplete items={schools} bind:selectedItem={schoolName} />
|
<!-- <AutoComplete items={schools} bind:selectedItem={schoolName} /> -->
|
||||||
|
<!-- TODO -->
|
||||||
|
<input type="text" bind:value={schoolName} />
|
||||||
</div>
|
</div>
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
<span>Obor: </span>
|
<span>Obor: </span>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue