We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb38780 commit 4eb7fd5Copy full SHA for 4eb7fd5
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
- "name": "gitbook-reader-app",
3
- "version": "0.6.2",
+ "name": "yet-another-gitbook-reader",
+ "version": "0.6.8",
4
"author": "xfoss.com",
5
"homepage": "https://gnu4cn.github.io/gitbook-reader/",
6
"scripts": {
src/app/home/components/book-list.component.html
@@ -31,7 +31,8 @@
31
32
<!-- 操作 -->
33
<mat-card-actions fxLayout="row" fxLayoutGap="0px">
34
- <button mat-button *ngIf="book.recordList" (click)="openReadingRecordDialog(book)">
+ <button mat-button *ngIf="book.recordList && book.recordList.length > 0"
35
+ (click)="openReadingRecordDialog(book)">
36
<ion-icon name="list-outline"></ion-icon>阅读记录
37
</button>
38
<button mat-button *ngIf="book.downloaded" (click)="openReadmeDialog(book.desc)">
0 commit comments