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
1 changed files with 1 additions and 1 deletions

View File

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