FIX: Use filters parameter instead of filter for staff action log (#11217)

Fixing this also means that ember takes care of JSON encoding the query parameter

Follow-up to a4441b3984
This commit is contained in:
David Taylor
2020-11-12 13:31:28 +00:00
committed by GitHub
parent 4f1bb184b1
commit 5be78bb2d9
3 changed files with 4 additions and 4 deletions
@@ -11,10 +11,10 @@ const SiteSetting = EmberObject.extend(Setting, {
return;
}
return JSON.stringify({
return {
subject: setting,
action_name: "change_site_setting",
});
};
},
});