Merge branch 'develop' into hooks-migration
This commit is contained in:
commit
e583d15d0d
5 changed files with 11 additions and 10 deletions
|
@ -127,10 +127,9 @@ const Report: React.FC<IReport> = ({ id }) => {
|
|||
|
||||
<Stack>
|
||||
{!!report.comment && report.comment.length > 0 && (
|
||||
<Text
|
||||
tag='blockquote'
|
||||
dangerouslySetInnerHTML={{ __html: report.comment }}
|
||||
/>
|
||||
<Text tag='blockquote'>
|
||||
{report.comment}
|
||||
</Text>
|
||||
)}
|
||||
|
||||
{!!account && (
|
||||
|
|
|
@ -4,6 +4,7 @@ import { useHistory } from 'react-router-dom';
|
|||
|
||||
import { useRelationship } from 'pl-fe/api/hooks/accounts/useRelationship';
|
||||
import DropdownMenu from 'pl-fe/components/dropdown-menu';
|
||||
import { ParsedContent } from 'pl-fe/components/parsed-content';
|
||||
import RelativeTimestamp from 'pl-fe/components/relative-timestamp';
|
||||
import Avatar from 'pl-fe/components/ui/avatar';
|
||||
import HStack from 'pl-fe/components/ui/hstack';
|
||||
|
@ -124,8 +125,9 @@ const ChatListItem: React.FC<IChatListItemInterface> = ({ chat, onClick }) => {
|
|||
truncate
|
||||
className='truncate-child pointer-events-none h-5 w-full'
|
||||
data-testid='chat-last-message'
|
||||
dangerouslySetInnerHTML={{ __html: chat.last_message?.content }}
|
||||
/>
|
||||
>
|
||||
<ParsedContent html={chat.last_message?.content} emojis={chat.last_message.emojis} />
|
||||
</Text>
|
||||
)}
|
||||
</>
|
||||
)}
|
||||
|
|
|
@ -5,11 +5,11 @@ import React, { useMemo, useState } from 'react';
|
|||
import { defineMessages, useIntl } from 'react-intl';
|
||||
|
||||
import DropdownMenu from 'pl-fe/components/dropdown-menu';
|
||||
import { ParsedContent } from 'pl-fe/components/parsed-content';
|
||||
import HStack from 'pl-fe/components/ui/hstack';
|
||||
import Icon from 'pl-fe/components/ui/icon';
|
||||
import Stack from 'pl-fe/components/ui/stack';
|
||||
import Text from 'pl-fe/components/ui/text';
|
||||
import Emojify from 'pl-fe/features/emoji/emojify';
|
||||
import { MediaGallery } from 'pl-fe/features/ui/util/async-components';
|
||||
import { useAppSelector } from 'pl-fe/hooks/useAppSelector';
|
||||
import { ChatKeys, useChatActions } from 'pl-fe/queries/chats';
|
||||
|
@ -240,7 +240,7 @@ const ChatMessage = (props: IChatMessage) => {
|
|||
tabIndex={0}
|
||||
>
|
||||
<Text size='sm' theme='inherit' className='break-word-nested'>
|
||||
<Emojify text={content} emojis={chatMessage.emojis} />
|
||||
<ParsedContent html={content} emojis={chatMessage.emojis} />
|
||||
</Text>
|
||||
</div>
|
||||
</HStack>
|
||||
|
|
|
@ -25,7 +25,7 @@ import StatusTypeIcon from './status-type-icon';
|
|||
import type { SelectedStatus } from 'pl-fe/selectors';
|
||||
|
||||
const messages = defineMessages({
|
||||
applicationName: { id: 'status.application_name', defaultMessage: 'Sent form {name}' },
|
||||
applicationName: { id: 'status.application_name', defaultMessage: 'Sent from {name}' },
|
||||
});
|
||||
|
||||
interface IDetailedStatus {
|
||||
|
|
|
@ -1434,7 +1434,7 @@
|
|||
"status.add_known_language": "Do not auto-translate posts in {language}.",
|
||||
"status.admin_account": "Moderate @{name}",
|
||||
"status.admin_status": "Open this post in the moderation interface",
|
||||
"status.application_name": "Sent form {name}",
|
||||
"status.application_name": "Sent from {name}",
|
||||
"status.approval.pending": "Pending approval",
|
||||
"status.approval.rejected": "Rejected",
|
||||
"status.bookmark": "Bookmark",
|
||||
|
|
Loading…
Reference in a new issue