Skip to content

Commit 853dcb1

Browse files
committed
fix(book-list): remove unused anchor tags
1 parent ba66122 commit 853dcb1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/book/book-list/book-list.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
</tr>
88
</thead>
99
<tbody>
10-
<tr *ngFor="let book of books | async">
10+
<tr class="book-row" *ngFor="let book of books | async">
1111
<td><a [routerLink]="[book.isbn]">{{book.title}}</a></td>
12-
<td><a>{{book.isbn}}</a></td>
13-
<td><a>{{book.author}}</a></td>
12+
<td>{{book.isbn}}</td>
13+
<td>{{book.author}}</td>
1414
</tr>
1515
</tbody>
1616
</table>

0 commit comments

Comments
 (0)