Browse Source

Fix URLs when clicking on screens

pull/4023/head
Andrew Kingston 6 years ago
parent
commit
f8f7a73a67
  1. 2
      packages/builder/src/components/userInterface/ComponentNavigationTree/PathTree.svelte

2
packages/builder/src/components/userInterface/ComponentNavigationTree/PathTree.svelte

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

Loading…
Cancel
Save