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 ba66122 commit 853dcb1Copy full SHA for 853dcb1
src/app/book/book-list/book-list.component.html
@@ -7,10 +7,10 @@
7
</tr>
8
</thead>
9
<tbody>
10
- <tr *ngFor="let book of books | async">
+ <tr class="book-row" *ngFor="let book of books | async">
11
<td><a [routerLink]="[book.isbn]">{{book.title}}</a></td>
12
- <td><a>{{book.isbn}}</a></td>
13
- <td><a>{{book.author}}</a></td>
+ <td>{{book.isbn}}</td>
+ <td>{{book.author}}</td>
14
15
</tbody>
16
</table>
0 commit comments