commit be0e11fc7e9a79492f08e16c49f225717e5f42f1
parent 3f898e3dbe6454ad5ae58bbc090795f49b4962f1
Author: MTRNord <mtrnord1@gmail.com>
Date: Wed, 14 Mar 2018 21:35:51 +0100
Fix HTML tags
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/app/tweet-list/tweet-list.component.html b/src/app/tweet-list/tweet-list.component.html
@@ -1,6 +1,6 @@
<div class="grid">
- <div *ngFor="let item of data">
- <a href="{{item.tweet_link}}">
+ <article *ngFor="let item of data">
+ <!--<a href="{{item.tweet_link}}">-->
<!--Retweet Badge-->
<div class="card-ribbon card-ribbon-top card-ribbon-left tblue" *ngIf="item.retweet == true" style="max-width: 22rem">
<i class="fa fa-retweet"></i>
@@ -15,6 +15,6 @@
<li><i class="fa fa-retweet"> </i>{{item.retweets.toLocaleString()}}</li>
</ul>
</div>
- </a>
- </div>
+ <!--</a>-->
+ </article>
</div>