1
0
Fork 0
mirror of synced 2024-07-08 15:56:23 +12:00

fix: changing screen: url gets undefined in path

This commit is contained in:
Michael Shanks 2020-06-29 20:28:53 +01:00
parent 6cdfd547c6
commit 281fbec596

View file

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