mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
Fix content warning button displaying a link icon when no status card is set
This commit is contained in:
parent
8383222026
commit
89d2859296
@ -112,7 +112,7 @@ export default class DetailedStatus extends ImmutablePureComponent {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
let media = '';
|
let media = null;
|
||||||
let mediaIcon = null;
|
let mediaIcon = null;
|
||||||
let applicationLink = '';
|
let applicationLink = '';
|
||||||
let reblogLink = '';
|
let reblogLink = '';
|
||||||
@ -163,8 +163,8 @@ export default class DetailedStatus extends ImmutablePureComponent {
|
|||||||
);
|
);
|
||||||
mediaIcon = 'picture-o';
|
mediaIcon = 'picture-o';
|
||||||
}
|
}
|
||||||
} else {
|
} else if (status.get('card')) {
|
||||||
media = <Card onOpenMedia={this.props.onOpenMedia} card={status.get('card', null)} />;
|
media = <Card onOpenMedia={this.props.onOpenMedia} card={status.get('card')} />;
|
||||||
mediaIcon = 'link';
|
mediaIcon = 'link';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user