diff --git a/frontend/src/Author/Details/AuthorDetailsConnector.js b/frontend/src/Author/Details/AuthorDetailsConnector.js index 1d7108682..5bc1add8c 100644 --- a/frontend/src/Author/Details/AuthorDetailsConnector.js +++ b/frontend/src/Author/Details/AuthorDetailsConnector.js @@ -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];