1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00

Keep honouring selected screen access role after swapping to layout tab

This commit is contained in:
Andrew Kingston 2020-12-11 15:29:25 +00:00
parent 84e1f54fa0
commit cae551fa77

View file

@ -89,11 +89,6 @@ export const getFrontendStore = () => {
let screen =
screens.find(screen => screen._id === screenId) || screens[0]
if (!screen) return state
// Update role to the screen's role setting so that it will always
// be visible
selectedAccessRole.set(screen.routing.roleId)
state.currentFrontEndType = FrontendTypes.SCREEN
state.currentAssetId = screen._id
state.currentView = "detail"
@ -107,6 +102,7 @@ export const getFrontendStore = () => {
state.currentAssetId = screen._id
state.selectedComponentId = screen.props._id
state.currentFrontEndType = FrontendTypes.SCREEN
selectedAccessRole.set(screen.routing.roleId)
return state
})
return screen