diff options
author | Joris | 2023-09-09 13:50:17 +0200 |
---|---|---|
committer | Joris | 2023-09-09 13:50:17 +0200 |
commit | 82429caf3c2886c2d94e09d020e645b06bd4680d (patch) | |
tree | 3183bf0c687c25e17fd36a23ced58fd1e6e29dda /src/book.ts | |
parent | 08a5f3519f29cd486d7fe4c295e5d5c7f031104a (diff) |
Allow to open book detail in modal
Diffstat (limited to 'src/book.ts')
-rw-r--r-- | src/book.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/book.ts b/src/book.ts index a5ddb75..328f8e1 100644 --- a/src/book.ts +++ b/src/book.ts @@ -1,6 +1,6 @@ export interface Book { title: string - subtitle: string + subtitle?: string authors: Array<string> authorsSort: string genres: Array<string> |