Merge branch 'bugfix/PRODDEF-28200' into 'release/11_6_0'

Digital PCT265 defect PRODDEF-28200 - Prevent navigation to the same selected...

### Summary
Prevent navigation to the same selected index fixing hang ups.

### JIRA Ticket
https://onejira.verizon.com/browse/PRODDEF-28200

Co-authored-by: Hedden, Kyle Matthew <kyle.hedden@verizonwireless.com>

See merge request https://gitlab.verizon.com/BPHV_MIPS/mvm_core_ui/-/merge_requests/1102
This commit is contained in:
Pfeil, Scott Robert 2024-04-23 23:09:35 +00:00
commit 8db7a3f696

View File

@ -364,10 +364,9 @@ open class SubNavManagerController: ViewController, MVMCoreViewManagerProtocol,
private func go(to index: Int) async {
// Load controller from the cache
guard index != self.index,
guard index != tabs.selectedIndex,
let controller = viewControllers[index] else { return }
needToTrackTabSelect = true
self.index = index
await NavigationHandler.shared().replace(viewController: controller, navigationController:subNavigationController, delegateObject:delegateObject(), tryToReplace: false, animated: true)
}