Skip to content

Commit

Permalink
Merge pull request #13399 from spywhere/master
Browse files Browse the repository at this point in the history
Sort the installed extension list
  • Loading branch information
joaomoreno committed Oct 14, 2016
2 parents 92db0fb + 25871ca commit de06987
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ export class ExtensionsViewlet extends Viewlet implements IExtensionsViewlet {
if (!value) {
// Show installed extensions
return this.extensionsWorkbenchService.queryLocal()
.then(result => result.sort((e1, e2) => e1.displayName.localeCompare(e2.displayName)))
.then(result => result.filter(e => e.type === LocalExtensionType.User))
.then(result => new PagedModel(result));
}
Expand Down

0 comments on commit de06987

Please sign in to comment.