We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 638227e + 88ac6c6 commit ccce75aCopy full SHA for ccce75a
1 file changed
browser/main/SideNav/index.js
@@ -117,9 +117,9 @@ class SideNav extends React.Component {
117
118
tagListComponent () {
119
const { data, location } = this.props
120
- const tagList = data.tagNoteMap.map((tag, name) => {
+ const tagList = _.sortBy(data.tagNoteMap.map((tag, name) => {
121
return { name, size: tag.size }
122
- })
+ }), ['name'])
123
return (
124
tagList.map(tag => {
125
0 commit comments