diff --git a/src/components/cap-contributor-list.js b/src/components/cap-contributor-list.js index 7e99869..af21282 100644 --- a/src/components/cap-contributor-list.js +++ b/src/components/cap-contributor-list.js @@ -71,9 +71,18 @@ export class CapContributorList extends LitElement { } render() { + const sortedContributors = contributorLinks.sort((a, b) => { + if (a.sort_name < b.sort_name) { + return -1; + } + if (a.sort_name > b.sort_name) { + return 1; + } + return 0; + }); return html`