1
0
Fork 0
mirror of synced 2024-07-01 12:30:41 +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 fb70cbb117
commit bc821feeff

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>