Merge branch 'link-previews-meta' into 'develop'

Always display embed description, even in timelines

See merge request soapbox-pub/soapbox-fe!500
This commit is contained in:
Alex Gleason 2021-05-12 17:29:32 +00:00
commit a3b2e007d3
2 changed files with 1 additions and 5 deletions

View file

@ -210,7 +210,7 @@ export default class Card extends React.PureComponent {
return ( return (
<div className={className} ref={this.setRef}> <div className={className} ref={this.setRef}>
{embed} {embed}
{!compact && description} {description}
</div> </div>
); );
} else if (card.get('image')) { } else if (card.get('image')) {

View file

@ -612,10 +612,6 @@ a.status-card {
.status-card.compact { .status-card.compact {
border-color: var(--brand-color--faint); border-color: var(--brand-color--faint);
&.interactive {
border: 0;
}
} }
a.status-card.compact:hover { a.status-card.compact:hover {