Skip to content

Commit ad800fe

Browse files
author
tabvn.drupal
committed
t
1 parent f8ecd7d commit ad800fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/app.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ <h4>{{follower.login}}</h4>
7777
<div *ngFor="let user of users" class="col-xs-6 col-md-2">
7878

7979
<div class="thumbnail">
80-
<img [src]="user.avatar_url">
80+
<img *ngIf="user.avatar_url" style="cursor: pointer;" (click)="viewUser(user)" [src]="user.avatar_url">
8181
<div class="caption">
8282
<h4>{{user.login}}</h4>
8383
<p>

0 commit comments

Comments
 (0)