We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8ecd7d commit ad800feCopy full SHA for ad800fe
src/app/app.component.html
@@ -77,7 +77,7 @@ <h4>{{follower.login}}</h4>
77
<div *ngFor="let user of users" class="col-xs-6 col-md-2">
78
79
<div class="thumbnail">
80
- <img [src]="user.avatar_url">
+ <img *ngIf="user.avatar_url" style="cursor: pointer;" (click)="viewUser(user)" [src]="user.avatar_url">
81
<div class="caption">
82
<h4>{{user.login}}</h4>
83
<p>
0 commit comments