Skip to content

Commit

Permalink
MID-6148 fix Shopping cart selection memory
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Apr 1, 2020
1 parent 2d74a56 commit 0c975dd
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -42,7 +42,9 @@ public RoleCatalogTabPanel(String id, RoleManagementConfigurationType roleManage

@Override
protected void initLeftSidePanel(){
getRoleCatalogStorage().setSelectedOid(roleCatalogOid);
if (StringUtils.isEmpty(getRoleCatalogStorage().getSelectedOid())) {
getRoleCatalogStorage().setSelectedOid(roleCatalogOid);
}

WebMarkupContainer treePanelContainer = new WebMarkupContainer(ID_TREE_PANEL_CONTAINER);
treePanelContainer.setOutputMarkupId(true);
Expand Down

0 comments on commit 0c975dd

Please sign in to comment.