Skip to content

Commit

Permalink
Merge branch 'heysujal/development' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
indutny-signal committed Jul 20, 2021
2 parents 56d5d28 + 3ef72d5 commit dd0baf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ts/components/conversation/Message.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import React from 'react';
import ReactDOM, { createPortal } from 'react-dom';
import classNames from 'classnames';
import { drop, groupBy, orderBy, take } from 'lodash';
import { drop, groupBy, orderBy, take, unescape } from 'lodash';
import { ContextMenu, ContextMenuTrigger, MenuItem } from 'react-contextmenu';
import { Manager, Popper, Reference } from 'react-popper';

Expand Down Expand Up @@ -963,7 +963,7 @@ export class Message extends React.Component<Props, State> {
</div>
{first.description && (
<div className="module-message__link-preview__description">
{first.description}
{unescape(first.description)}
</div>
)}
<div className="module-message__link-preview__footer">
Expand Down

0 comments on commit dd0baf9

Please sign in to comment.