1
0

extend eperson render type for display of dso name

https://github.com/DSpace/dspace-angular/issues/2947
(cherry picked from commit 97fade00a4)
This commit is contained in:
Gantner, Florian Klaus
2024-04-17 17:59:10 +02:00
committed by github-actions[bot]
parent 6ac2e9a95d
commit 202c84c484
2 changed files with 63 additions and 1 deletions

View File

@@ -85,7 +85,7 @@ export class EPerson extends DSpaceObject {
public groups?: Observable<RemoteData<PaginatedList<Group>>>;
getRenderTypes(): (string | GenericConstructor<ListableObject>)[] {
return [this.constructor.name, ...super.getRenderTypes()];
return ['EPerson', this.constructor.name, ...super.getRenderTypes()];
}
}