Fix Bug 69196 - Rooms.Info.History. In history, the room is recorded as a folder.

This commit is contained in:
Alexey Safronov 2024-07-25 15:47:03 +04:00
parent d94a45bc4a
commit 61a1651592

View File

@ -54,23 +54,23 @@ const HistoryMainTextFolderInfo = ({
if (!parentTitle) return null;
const isParentType = parentType === 0;
const isFromParentType = fromParentType === 0;
const isRoom = parentType === 0;
const isFromRoom = fromParentType === 0;
const destination = isParentType
? t("FeedLocationRoomLabel", { folderTitle: parentTitle })
: t("FeedLocationLabel", { folderTitle: parentTitle });
const destination = isRoom
? t("FeedLocationLabel", { folderTitle: parentTitle })
: t("FeedLocationRoomLabel", { folderTitle: parentTitle });
const sourceDestination = isFromParentType
const sourceDestination = isFromRoom
? t("FeedLocationLabelFrom", { folderTitle: fromParentTitle })
: t("FeedLocationRoomLabel", { folderTitle: parentTitle });
const className = !isFromParentType ? "folder-label" : "source-folder-label";
const className = !isFromRoom ? "folder-label" : "source-folder-label";
return (
<StyledHistoryBlockMessage className="message">
<span className={className}>
{!isFromParentType ? destination : sourceDestination}
{!isFromRoom ? destination : sourceDestination}
</span>
</StyledHistoryBlockMessage>
);