This PR is a followup of #6324 to add support of EMAIL and CALENDAR source for the created by composite field.
13 lines
355 B
TypeScript
13 lines
355 B
TypeScript
import { FullNameMetadata } from 'src/engine/metadata-modules/field-metadata/composite-types/full-name.composite-type';
|
|
import { isDefined } from 'src/utils/is-defined';
|
|
|
|
export const computeDisplayName = (
|
|
name: FullNameMetadata | null | undefined,
|
|
) => {
|
|
if (!name) {
|
|
return '';
|
|
}
|
|
|
|
return Object.values(name).filter(isDefined).join(' ');
|
|
};
|