show group in status component

This commit is contained in:
2458773093 2019-07-26 21:19:13 +03:00
parent c311f6b9d0
commit 7503d5728e
2 changed files with 21 additions and 0 deletions

View File

@ -426,6 +426,12 @@ class Status extends ImmutablePureComponent {
</NavLink>
</div>
{status.get('group') && (
<div className='status__meta'>
Posted in <NavLink to={`/groups/${status.getIn(['group', 'id'])}`}>{status.getIn(['group', 'title'])}</NavLink>
</div>
)}
<StatusContent
status={status}
reblogContent={reblogContent}

View File

@ -565,6 +565,21 @@
}
}
}
&__meta {
font-size: 14px;
color: $gab-secondary-text;
a {
color: $gab-brand-default;
font-weight: bold;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}
}
.notification-favourite {