Fix #634 - Only include innermost-level statuses in report UI

Fix #635 - Include the initially-reported status in report UI even if it's not
among the user's most recent statuses
This commit is contained in:
Eugen Rochko
2017-02-14 23:59:46 +01:00
parent e571a01853
commit 0a2427f79b
3 changed files with 7 additions and 3 deletions

View File

@@ -18,6 +18,10 @@ const StatusCheckBox = React.createClass({
const { status, checked, onToggle, disabled } = this.props;
const content = { __html: emojify(status.get('content')) };
if (status.get('reblog')) {
return null;
}
return (
<div className='status-check-box' style={{ display: 'flex' }}>
<div