socialnetworknews-web

A open-source Paper.li clone
git clone git://archive.git.mtrnord.blog/SocialNetworkNews/socialnetworknews-web.git
Log | Files | Refs | README | LICENSE

commit bdb4f6d1c68d4bd62c1c836ba73be1e3c5a68fb2
parent 39b1a8ba2edbcb5d85c7c8af6da8f206956ed321
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sun, 25 Mar 2018 14:40:41 +0200

Use correct variable for profileImages

Diffstat:
Msrc/app/tweet-list/tweet-list.component.html | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/tweet-list/tweet-list.component.html b/src/app/tweet-list/tweet-list.component.html @@ -11,7 +11,7 @@ </span> </div> <mat-card-header> - <img src="https://twitter.com/{{item.user_id}}/profile_image" mat-card-avatar> + <img src="https://twitter.com/{{item.username}}/profile_image" mat-card-avatar> <mat-card-title>{{item.display_name}}</mat-card-title> <mat-card-subtitle><i class="fa fa-clock-o">&nbsp;</i>{{item.created_at.toLocaleString()}}</mat-card-subtitle> </mat-card-header>