mirror of
https://github.com/danbulant/Portfolio
synced 2026-06-09 01:30:18 +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">
|
||||
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 schoollistString from '$lib/assets/schoollist.txt';
|
||||
|
||||
|
|
@ -23,7 +24,9 @@ $: selectedSchool.name = schoolName;
|
|||
<span>
|
||||
Selected school: {selectedSchool.name}
|
||||
</span>
|
||||
<AutoComplete items={schools} bind:selectedItem={schoolName} />
|
||||
<!-- <AutoComplete items={schools} bind:selectedItem={schoolName} /> -->
|
||||
<!-- TODO -->
|
||||
<input type="text" bind:value={schoolName} />
|
||||
</div>
|
||||
<div class="flex">
|
||||
<span>Obor: </span>
|
||||
|
|
|
|||
Loading…
Reference in a new issue