1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00

Fix routing error when initially loading Data page

This commit is contained in:
Andrew Kingston 2021-04-01 19:49:51 +01:00
parent caee5e3cd9
commit 2b31f7d8a1

View file

@ -4,7 +4,7 @@
import { tables } from "stores/backend"
onMount(async () => {
$tables.list.length > 0 && $goto(`../${$tables.list[0]._id}`)
$tables.list.length > 0 && $goto(`./${$tables.list[0]._id}`)
})
</script>