From 539515483246f66c0aa9fd3e1102dafc2c3243b5 Mon Sep 17 00:00:00 2001 From: Plastikmensch Date: Tue, 14 Jan 2025 23:47:09 +0100 Subject: [PATCH] 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 --- .../glitch/features/report/components/status_check_box.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/javascript/flavours/glitch/features/report/components/status_check_box.jsx b/app/javascript/flavours/glitch/features/report/components/status_check_box.jsx index 06ed6ac33c..b75d0537c7 100644 --- a/app/javascript/flavours/glitch/features/report/components/status_check_box.jsx +++ b/app/javascript/flavours/glitch/features/report/components/status_check_box.jsx @@ -46,7 +46,8 @@ class StatusCheckBox extends PureComponent { - } /> + + );