[Library | Trunk]: Fix user name and surname on notification list
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@60804 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
parent
b204e808c1
commit
f4574a4273
|
@ -27,7 +27,7 @@ import {Option} from "../../sharedComponents/input/input.component";
|
||||||
<ul *ngIf="notifications.length > 0" class="uk-list">
|
<ul *ngIf="notifications.length > 0" class="uk-list">
|
||||||
<li *ngFor="let notification of notifications; let i=index" class="clickable" (click)="select(notification)">
|
<li *ngFor="let notification of notifications; let i=index" class="clickable" (click)="select(notification)">
|
||||||
<div class="uk-grid uk-grid-small" uk-grid>
|
<div class="uk-grid uk-grid-small" uk-grid>
|
||||||
<notification-user [name]="user.firstname" [surname]="user.lastname" [outline]="true"
|
<notification-user [name]="notification.name" [surname]="notification.surname" [outline]="true"
|
||||||
colorClass="uk-text-secondary"></notification-user>
|
colorClass="uk-text-secondary"></notification-user>
|
||||||
<div class="uk-width-expand">
|
<div class="uk-width-expand">
|
||||||
<div class="uk-width-1-1 uk-flex uk-flex-middle">
|
<div class="uk-width-1-1 uk-flex uk-flex-middle">
|
||||||
|
|
Loading…
Reference in New Issue