Skip to content

Commit

Permalink
fix name compareEntries
Browse files Browse the repository at this point in the history
  • Loading branch information
asiloisad committed Jan 14, 2025
1 parent 3cf22af commit 2ff577e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tree-view/lib/directory.js
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ class Directory {
return combinedEntries.sort((first, second) => {
const firstName = this.normalizeEntryName(first)
const secondName = this.normalizeEntryName(second)
return this.getCompare(firstName, secondName)
return this.compareEntries(firstName, secondName)
})
}
}
Expand Down

0 comments on commit 2ff577e

Please sign in to comment.