mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 12:06:47 +00:00
fix(collection-manager): filter null
This commit is contained in:
parent
c03d271481
commit
e087be887b
@ -359,13 +359,16 @@ export const CollectionFields = (props) => {
|
||||
dataSource.push(
|
||||
...inherits.map((key) => {
|
||||
const collection = getCollection(key);
|
||||
if (!collection) {
|
||||
return;
|
||||
}
|
||||
return {
|
||||
key,
|
||||
title: `${t('Inherited fields')} - ` + compile(collection?.title),
|
||||
inherit: true,
|
||||
fields: collection?.fields || [],
|
||||
};
|
||||
}),
|
||||
}).filter(Boolean),
|
||||
);
|
||||
|
||||
const resourceActionProps = {
|
||||
|
Loading…
Reference in New Issue
Block a user