Fixed: Previous / Next author buttons sort by last name

pull/1205/head
ta264 3 years ago
parent c9cb0a9774
commit 5f1be9e447

@ -96,7 +96,7 @@ function createMapStateToProps() {
createCommandsSelector(),
createDimensionsSelector(),
(titleSlug, books, series, bookFiles, allAuthors, commands, dimensions) => {
const sortedAuthor = _.orderBy(allAuthors, 'sortName');
const sortedAuthor = _.orderBy(allAuthors, 'sortNameLastFirst');
const authorIndex = _.findIndex(sortedAuthor, { titleSlug });
const author = sortedAuthor[authorIndex];

Loading…
Cancel
Save