fix: wizard

This commit is contained in:
Arman
2022-09-26 15:13:23 +02:00
parent d278f10467
commit eef12067e7
@@ -13,6 +13,7 @@
import { app } from '$lib/stores/app';
import { onMount } from 'svelte';
import { wizard } from '$lib/stores/wizard';
import { beforeNavigate } from '$app/navigation';
let search = '';
let offset = 0;
@@ -29,6 +30,10 @@
wizard.start(Create);
}
beforeNavigate(() => {
wizard.hide();
});
$: functionList.load(search, limit, offset ?? 0);
</script>