mirror of
https://github.com/danbulant/Portfolio
synced 2026-07-04 02:20:50 +00:00
fix: form edit
This commit is contained in:
parent
446500e0a3
commit
1439edaf79
1 changed files with 4 additions and 1 deletions
|
|
@ -76,8 +76,11 @@
|
||||||
export let selectedSchool: SchoolType;
|
export let selectedSchool: SchoolType;
|
||||||
export let error: string = '';
|
export let error: string = '';
|
||||||
|
|
||||||
$: selectedSchool.name = schoolNameInputValue;
|
schoolFieldInputValue = selectedSchool.field;
|
||||||
|
schoolNameInputValue = selectedSchool.name;
|
||||||
|
|
||||||
$: selectedSchool.field = schoolFieldInputValue;
|
$: selectedSchool.field = schoolFieldInputValue;
|
||||||
|
$: selectedSchool.name = schoolNameInputValue;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<svelte:window on:keydown={navigateList} />
|
<svelte:window on:keydown={navigateList} />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue