Fix report reason selector in moderation interface not unselecting rules when changing category (#29026)

This commit is contained in:
Claire 2024-02-06 10:35:36 +01:00
parent 2084f1a081
commit 6383a2e4ee

View File

@ -121,7 +121,7 @@ class ReportReasonSelector extends React.PureComponent {
api().put(`/api/v1/admin/reports/${id}`, {
category,
rule_ids,
rule_ids: category === 'violation' ? rule_ids : [],
}).catch(err => {
console.error(err);
});