@@ -338,7 +338,7 @@ function ReportDetailsPage({policy, report, route, reportMetadata}: ReportDetail
338338 const shouldShowLeaveButton = canLeaveChat ( report , policy , ! ! reportNameValuePairs ?. private_isArchived ) ;
339339 const shouldShowGoToWorkspace = shouldShowPolicy ( policy , false , currentUserPersonalDetails ?. email ) && ! policy ?. isJoinRequestPending ;
340340
341- const reportName = Parser . htmlToText ( getReportNameFromReportNameUtils ( report , reportAttributes ) ) ;
341+ const reportName = isGroupChat ? getReportNameFromReportNameUtils ( report , reportAttributes ) : Parser . htmlToText ( getReportNameFromReportNameUtils ( report , reportAttributes ) ) ;
342342 const additionalRoomDetails =
343343 ( isPolicyExpenseChat && ! ! report ?. isOwnPolicyExpenseChat ) || isExpenseReportUtil ( report ) || isPolicyExpenseChat || isInvoiceRoom
344344 ? chatRoomSubtitle
@@ -550,6 +550,7 @@ function ReportDetailsPage({policy, report, route, reportMetadata}: ReportDetail
550550 isSelfDM ,
551551 isArchivedRoom ,
552552 isGroupChat ,
553+ expensifyIcons ,
553554 isDefaultRoom ,
554555 isChatThread ,
555556 isPolicyEmployee ,
@@ -665,6 +666,7 @@ function ReportDetailsPage({policy, report, route, reportMetadata}: ReportDetail
665666 policy ,
666667 participants ,
667668 moneyRequestReport ?. reportID ,
669+ expensifyIcons . Camera ,
668670 ] ) ;
669671
670672 const canJoin = canJoinChat ( report , parentReportAction , policy , ! ! reportNameValuePairs ?. private_isArchived ) ;
@@ -693,6 +695,7 @@ function ReportDetailsPage({policy, report, route, reportMetadata}: ReportDetail
693695 < DisplayNames
694696 fullTitle = { reportName }
695697 displayNamesWithTooltips = { displayNamesWithTooltips }
698+ shouldParseFullTitle = { ! isGroupChat }
696699 tooltipEnabled
697700 numberOfLines = { isChatRoom && ! isChatThread ? 0 : 1 }
698701 textStyles = { [ styles . textHeadline , styles . textAlignCenter , isChatRoom && ! isChatThread ? undefined : styles . pre ] }
0 commit comments