0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Moved members list filtering via url param behind alpha flag

refs https://github.com/TryGhost/Team/issues/942

The `filter` param on members list is only supposed to work if the alpha for filtering is switched on
This commit is contained in:
Rishabh 2021-08-04 16:23:00 +05:30 committed by Rishabh Garg
parent b07efb7dc6
commit 5a8bb31cc6

View file

@ -170,7 +170,7 @@ export default class MembersController extends Controller {
}
}
if (filterParam) {
if (filterParam && this.feature.get('membersFiltering')) {
filters.push(filterParam);
}