mirror of
https://github.com/danbulant/Portfolio
synced 2026-06-16 13:01:13 +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 error: string = '';
|
||||
|
||||
$: selectedSchool.name = schoolNameInputValue;
|
||||
schoolFieldInputValue = selectedSchool.field;
|
||||
schoolNameInputValue = selectedSchool.name;
|
||||
|
||||
$: selectedSchool.field = schoolFieldInputValue;
|
||||
$: selectedSchool.name = schoolNameInputValue;
|
||||
</script>
|
||||
|
||||
<svelte:window on:keydown={navigateList} />
|
||||
|
|
|
|||
Loading…
Reference in a new issue