Skip to content

Commit 8d0e9bf

Browse files
authored
1 parent 449c386 commit 8d0e9bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/services/userDataProfile/browser/extensionsResource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export abstract class ExtensionsResourceTreeItem implements IProfileResourceTree
172172
protected readonly excludedExtensions = new Set<string>();
173173

174174
async getChildren(): Promise<IProfileResourceChildTreeItem[]> {
175-
const extensions = await this.getExtensions();
175+
const extensions = (await this.getExtensions()).sort((a, b) => (a.displayName ?? a.identifier.id).localeCompare(b.displayName ?? b.identifier.id));
176176
const that = this;
177177
return extensions.map<IProfileResourceChildTreeItem>(e => ({
178178
handle: e.identifier.id.toLowerCase(),

0 commit comments

Comments
 (0)