mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-23 01:37:59 +00:00
feed table added
This commit is contained in:
@@ -34,30 +34,18 @@
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Feed</th>
|
||||
<th></th>
|
||||
<th>Update</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="filterable-cell">Ford</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="filterable-cell">Ford</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="filterable-cell">Ford</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="filterable-cell">Ford</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="filterable-cell">Ford</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="filterable-cell">Ford</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="filterable-cell">Ford</td>
|
||||
<tr *ngFor="let feed of match.Feeds">
|
||||
<td>
|
||||
<span class="feed-time">{{feed.CreatedAt | date:'shortTime' }}</span>
|
||||
</td>
|
||||
<td class="filterable-cell">
|
||||
<span class="feed-update"> {{feed.Description}} </span>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@@ -13,7 +13,7 @@ export class MatchComponent implements OnInit {
|
||||
|
||||
constructor(private feedService: FeedService) { }
|
||||
|
||||
ngOnInit() { }
|
||||
ngOnInit() { }
|
||||
|
||||
subscribe() {
|
||||
console.log(this.match.Id);
|
||||
|
||||
Reference in New Issue
Block a user