Sort path groupings
This commit is contained in:
parent
ff3e79696d
commit
3c6be9d481
|
@ -1,11 +1,12 @@
|
|||
<script>
|
||||
import { goto } from "@sveltech/routify"
|
||||
import { store } from "builderStore"
|
||||
import PathTree from "./PathTree.svelte"
|
||||
|
||||
$: paths = Object.keys($store.routes || {}).sort()
|
||||
</script>
|
||||
|
||||
<div class="root">
|
||||
{#each Object.keys($store.routes || {}) as path}
|
||||
{#each paths as path}
|
||||
<PathTree {path} route={$store.routes[path]} />
|
||||
{/each}
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue