fix: changing screen: url gets `undefined` in path

This commit is contained in:
Michael Shanks 2020-06-29 20:28:53 +01:00
parent 91e05f8bf1
commit f902414941
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@
const changeScreen = screen => {
store.setCurrentScreen(screen.props._instanceName)
$goto(`./:page/${screen.title}`)
$goto(`./:page/${screen.props._instanceName}`)
}
</script>