mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-29 01:25:42 -05:00
Changes the file sort in the custom view
This commit is contained in:
@@ -31,7 +31,9 @@ export class StashNode extends ExplorerNode {
|
||||
}
|
||||
}
|
||||
|
||||
return statuses.map(s => new StashFileNode(s, this.commit, this.context, this.git));
|
||||
const children = statuses.map(s => new StashFileNode(s, this.commit, this.context, this.git));
|
||||
children.sort((a, b) => a.label!.localeCompare(b.label!));
|
||||
return children;
|
||||
}
|
||||
|
||||
getTreeItem(): TreeItem {
|
||||
|
||||
Reference in New Issue
Block a user