only show public attachments in profile media panel

merge-requests/181/head
Mary Kate 2020-08-15 15:47:11 -05:00
rodzic 422588178a
commit 2f24577e7f
1 zmienionych plików z 2 dodań i 5 usunięć

Wyświetl plik

@ -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'>