fix(collection-manager): filter null

This commit is contained in:
chenos 2023-04-24 22:56:37 +08:00
parent c03d271481
commit e087be887b

View File

@ -359,13 +359,16 @@ export const CollectionFields = (props) => {
dataSource.push( dataSource.push(
...inherits.map((key) => { ...inherits.map((key) => {
const collection = getCollection(key); const collection = getCollection(key);
if (!collection) {
return;
}
return { return {
key, key,
title: `${t('Inherited fields')} - ` + compile(collection?.title), title: `${t('Inherited fields')} - ` + compile(collection?.title),
inherit: true, inherit: true,
fields: collection?.fields || [], fields: collection?.fields || [],
}; };
}), }).filter(Boolean),
); );
const resourceActionProps = { const resourceActionProps = {