1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +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 48a1932bc3
commit 8022fc1230

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"