Fixed: File Count on Books page

pull/3133/head
Bogdan 5 months ago
parent 9d5cdebdb2
commit 34eb312426

@ -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) {

Loading…
Cancel
Save