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:
Plastikmensch 2025-01-14 23:47:09 +01:00
parent ae49d73f58
commit 5395154832
No known key found for this signature in database
GPG Key ID: 96381D586F4A6077

View File

@ -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>
);