diff --git a/packages/ra-core/src/reducer/admin/references/possibleValues.ts b/packages/ra-core/src/reducer/admin/references/possibleValues.ts index d0337006613..ab7d0202b9e 100644 --- a/packages/ra-core/src/reducer/admin/references/possibleValues.ts +++ b/packages/ra-core/src/reducer/admin/references/possibleValues.ts @@ -56,15 +56,18 @@ export const getPossibleReferences = ( if (possibleValues.error) { return possibleValues; } - possibleValues = Array.from(possibleValues); + const possibleValuesList = Array.from(possibleValues); selectedIds.forEach( id => - possibleValues.some(value => value === id) || - possibleValues.unshift(id) + possibleValuesList.some(value => value === id) || + possibleValuesList.unshift(id) + ); + return ( + possibleValuesList + // @ts-ignore + .map(id => referenceState.data[id]) + .filter(r => typeof r !== 'undefined') ); - return possibleValues - .map(id => referenceState.data[id]) - .filter(r => typeof r !== 'undefined'); }; export default possibleValuesreducer;