Fix filters not applying in detailed view (#34259)

This commit is contained in:
Claire 2025-03-25 14:11:49 +01:00
commit d6442b5455
4 changed files with 34 additions and 12 deletions

View file

@ -138,7 +138,7 @@ const makeMapStateToProps = () => {
});
const mapStateToProps = (state, props) => {
const status = getStatus(state, { id: props.params.statusId });
const status = getStatus(state, { id: props.params.statusId, contextType: 'detailed' });
let ancestorsIds = Immutable.List();
let descendantsIds = Immutable.List();