Added author in the search results for books

This commit is contained in:
ltctceplrm 2023-12-21 20:33:51 +01:00
parent d21ac66061
commit e30db0897d
2 changed files with 9 additions and 4 deletions

View file

@ -56,6 +56,6 @@ export class BookModel extends MediaTypeModel {
}
getSummary(): string {
return this.englishTitle + ' (' + this.year + ')';
return this.englishTitle + ' (' + this.year + ') - ' + this.author;
}
}