fixed saving archive

This commit is contained in:
Jan Prochazka
2021-12-09 13:24:58 +01:00
parent fd531cfd1f
commit 3d4ef1da4a
2 changed files with 6 additions and 1 deletions

View File

@@ -5,11 +5,12 @@
import FormSelectField from '../forms/FormSelectField.svelte';
import FormSubmit from '../forms/FormSubmit.svelte';
import FormTextField from '../forms/FormTextField.svelte';
import { currentArchive } from '../stores';
import ModalBase from './ModalBase.svelte';
import { closeCurrentModal } from './modalTools';
export let file = 'new-table';
export let folder = 'default';
export let folder = $currentArchive;
export let onSave;
const handleSubmit = async e => {