1
0
Fork 0
mirror of synced 2024-06-29 19:41:03 +12:00

Select new role when creating screen with a different role than the selected one

This commit is contained in:
Andrew Kingston 2020-12-09 19:04:46 +00:00
parent db40514eb1
commit ef9415ae3b

View file

@ -10,6 +10,7 @@ import {
currentAsset,
mainLayout,
selectedComponent,
selectedAccessRole,
} from "builderStore"
import { fetchComponentLibDefinitions } from "../loadComponentLibraries"
import api from "../api"
@ -88,6 +89,11 @@ 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"