mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-03 05:23:18 -05:00
Fix media attachments in report modal
Media attachments weren't shown in the report modal since they were passed as `media` to `StatusContent`, but `StatusContent` doesn't use the media prop anymore. Instead match the file with vanilla. Signed-off-by: Plastikmensch <plastikmensch@users.noreply.github.com>
This commit is contained in:
parent
ae49d73f58
commit
5395154832
@ -46,7 +46,8 @@ class StatusCheckBox extends PureComponent {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<StatusContent status={status} media={<MediaAttachments status={status} visible={false} />} />
|
||||
<StatusContent status={status} />
|
||||
<MediaAttachments status={status} visible={false} />
|
||||
</div>
|
||||
);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user