openScreen
leads to Error: An id must be provided to format a message
#897
Milestone
openScreen
leads to Error: An id must be provided to format a message
#897
When we calling
openScreen
it leads to error because:openScreen
callsredirect(route)
that contains:const targetScreen = getMenuItems().find((x: any) => x.menuLink === to)
- returns undefined ( we don't add screen to menu )setWindowTitle(targetScreen?.caption || '')
- passes empty string tosetWindowTitle
that has:The quick fix would be to pass null to
setWindowTitle
instead of an empty string.The text was updated successfully, but these errors were encountered: