Add an extra icon to indicate that a status is part of a conversation

th-downstream
Spencer Alves 7 years ago
parent e774936358
commit 31d760f56d

@ -47,6 +47,12 @@ export default class StatusIcons extends React.PureComponent {
return (
<div className='status__info__icons'>
{status.get('in_reply_to_id', null) !== null ? (
<i
className={`fa fa-fw fa-comment`}
aria-hidden='true'
/>
) : null}
{mediaIcon ? (
<i
className={`fa fa-fw fa-${mediaIcon}`}

Loading…
Cancel
Save