Fixed: Previous / Next author buttons sort by last name

This commit is contained in:
ta264
2021-09-01 21:04:39 +01:00
parent c9cb0a9774
commit 5f1be9e447

View File

@@ -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];