We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using custom data for Person Components, you can't add and use custom images.
PersonAvatar dataSource type is AvatarData PersonCard dataSource type is CardData
dataSource
AvatarData
CardData
export type AvatarData = Pick<PersonInfo, 'name' | 'accountType'>; export type CardData = PersonDetails; export type PersonInfo = { azureId: string; name?: string; jobTitle?: string; department?: string; mail?: string; mobilePhone?: string; accountType?: PersonAccountType; officeLocation?: string; managerAzureUniqueId?: string; }; export type PersonDetails = PersonInfo & { positions?: Position[]; manager?: Manager; };
PersonDetails and PersonInfo don't have pictureSrc
PersonDetails
PersonInfo
pictureSrc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using custom data for Person Components, you can't add and use custom images.
PersonAvatar
dataSource
type isAvatarData
PersonCard
dataSource
type isCardData
PersonDetails
andPersonInfo
don't havepictureSrc
The text was updated successfully, but these errors were encountered: