Merge branch 'bugfix/CXTDT-434858' into 'release/10_8_0'

Defect: CXTDT-434858 Support panel is not opening for L2 authentication

### Summary
User is not able to navigate to Support page during step up authentication.

### JIRA Ticket
https://onejira.verizon.com/browse/CXTDT-434858

Co-authored-by: Ramya Subramaniam <ramya.subramaniam@verizon.com>

See merge request https://gitlab.verizon.com/BPHV_MIPS/mvm_core_ui/-/merge_requests/977
This commit is contained in:
Pfeil, Scott Robert 2023-07-11 13:39:30 +00:00
commit 5a99da0189

View File

@ -435,7 +435,7 @@ import MVMCore
// Open the support panel
if error == nil,
loadObject?.requestParameters?.openSupportPanel ?? (loadObject?.systemParametersJSON?.boolForKey(KeyOpenSupport) ?? false) == true {
(loadObject?.requestParameters?.openSupportPanel ?? false) || (loadObject?.systemParametersJSON?.boolForKey(KeyOpenSupport) ?? false) {
MVMCoreUISession.sharedGlobal()?.splitViewController?.showRightPanel(animated: true)
}
}