mirror of
https://github.com/Readarr/Readarr.git
synced 2026-09-23 11:45:09 -04:00
Fixed: File Count on Books page
This commit is contained in:
1 parent
9d5cdebdb2
commit
34eb312426
2 files changed
+1
-2
No files matched your search
@@ -229,7 +229,6 @@ class BookIndexRow extends Component {
|
||||
className={styles[name]}
|
||||
>
|
||||
{bookFileCount}
|
||||
|
||||
</VirtualTableRowCell>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -158,7 +158,7 @@ export const defaultState = {
|
||||
bookFileCount: function(item) {
|
||||
const { statistics = {} } = item;
|
||||
|
||||
return statistics.bookCount || 0;
|
||||
return statistics.bookFileCount || 0;
|
||||
},
|
||||
|
||||
ratings: function(item) {
|
||||
|
||||
Reference in new issue
Block a user