only show public attachments in profile media panel

merge-requests/181/head
Mary Kate 4 years ago
parent 422588178a
commit 2f24577e7f

@ -43,11 +43,8 @@ class ProfileMediaPanel extends ImmutablePureComponent {
render() {
const { attachments, account } = this.props;
const nineAttachments = attachments.slice(0, 9);
//
// if (attachments.isEmpty()) {
// return null;
// }
const publicAttachments = attachments.filter(attachment => attachment.getIn(['status', 'visibility']) === 'public');
const nineAttachments = publicAttachments.slice(0, 9);
return (
<div className='media-panel'>

Loading…
Cancel
Save