Skip to content
Snippets Groups Projects
Commit eeb7c992 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

person-profile: stop using person.name

parent 821b9326
No related branches found
No related tags found
No related merge requests found
Pipeline #56862 passed
...@@ -89,7 +89,7 @@ export class PersonProfile extends DBPLitElement { ...@@ -89,7 +89,7 @@ export class PersonProfile extends DBPLitElement {
} }
</style> </style>
${this.person !== null && this.person.name !== '' ? html`<h3>${i18n.t('person-profile.profile-caption')} ${this.person.name}</h3> ${this.person !== null ? html`<h3>${i18n.t('person-profile.profile-caption')} ${this.person.givenName} ${this.person.familyName}</h3>
<table class="profile"> <table class="profile">
<thead></thead> <thead></thead>
<tbody> <tbody>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment