1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

Fix URLs when clicking on screens

This commit is contained in:
Andrew Kingston 2020-12-07 10:32:58 +00:00
parent 6b5c1ffafa
commit f8f7a73a67

View file

@ -19,7 +19,7 @@
const changeScreen = screenId => {
// select the route
store.actions.screens.select(screenId)
$goto(`./screen/${screenId}`)
$goto(`./${screenId}`)
}
</script>