Merge pull request #8307 from Budibase/fix/stop-screen-store-double-updating-on-page-change
Stop Screen Store Double Updating on Screen Change
This commit is contained in:
commit
9aaeaee7f8
|
@ -43,6 +43,7 @@
|
|||
}
|
||||
|
||||
const onRouteLoading = ({ detail }) => {
|
||||
routeStore.actions.setRouteParams(detail.params || {})
|
||||
routeStore.actions.setActiveRoute(detail.route)
|
||||
}
|
||||
|
||||
|
|
|
@ -10,9 +10,6 @@
|
|||
|
||||
const context = getContext("context")
|
||||
|
||||
// Keep route params up to date
|
||||
$: routeStore.actions.setRouteParams(params || {})
|
||||
|
||||
// Get the screen definition for the current route
|
||||
$: screenDefinition = $screenStore.activeScreen?.props
|
||||
|
||||
|
|
Loading…
Reference in New Issue