Skip to content

Commit

Permalink
Merge pull request #19305 from allroundexperts/fix-18542
Browse files Browse the repository at this point in the history
fix: consistent order of keyboard shortcuts
  • Loading branch information
marcaaron authored May 23, 2023
2 parents a65399a + 988c509 commit 846d593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/KeyboardShortcut/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const documentedShortcuts = {};
* @returns {Array}
*/
function getDocumentedShortcuts() {
return _.values(documentedShortcuts);
return _.sortBy(_.values(documentedShortcuts), 'displayName');
}

/**
Expand Down

0 comments on commit 846d593

Please sign in to comment.