AboutContactModal: Use systemGivenName for contact before firstName
This commit is contained in:
parent
53ae88c777
commit
28eaf1689f
1 changed files with 4 additions and 1 deletions
|
@ -178,7 +178,10 @@ export function AboutContactModal({
|
|||
<div className="AboutContactModal__row">
|
||||
<i className="AboutContactModal__row__icon AboutContactModal__row__icon--person" />
|
||||
{i18n('icu:AboutContactModal__system-contact', {
|
||||
name: conversation.firstName || conversation.title,
|
||||
name:
|
||||
conversation.systemGivenName ||
|
||||
conversation.firstName ||
|
||||
conversation.title,
|
||||
})}
|
||||
</div>
|
||||
) : null}
|
||||
|
|
Loading…
Reference in a new issue