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

This commit is contained in:
Spencer Alves 2018-05-07 22:10:34 -07:00
parent 919e2098cb
commit f2ff167c1a

View file

@ -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}`}