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 8b6be6467f44a16dfdf2b6179562ab2265c1ad01
parent 7621316940975a42c5d70d3a5b775ffcb571499f
Author: MTRNord <mtrnord1@gmail.com>
Date:   Tue,  3 Apr 2018 20:03:49 +0200

Fix ngIf

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

diff --git a/src/app/paper/paper.component.html b/src/app/paper/paper.component.html @@ -30,7 +30,7 @@ </div> </mat-card-header> <mat-card-content> - <p *ngIf="data.description != ''"><i class="fa fa-quote-left"></i>{{data.description}}</p> + <p *ngIf="data.description"><i class="fa fa-quote-left"></i>{{data.description}}</p> </mat-card-content> </mat-card> </div>