We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 355f46e commit 50b87dfCopy full SHA for 50b87df
src/workspaces.ts
@@ -57,6 +57,7 @@ export const openWorkspace = async (name: string): Promise<void> => {
57
const getWorkspaceItems = async (): Promise<CoderWorkspaceListItem[]> => {
58
const images = await getImages()
59
const envs = await getWorkspaces()
60
+ envs.sort((a, b) => (a.name > b.name ? 1 : -1))
61
return envs.map((w) => new CoderWorkspaceListItem(w, images, vscode.TreeItemCollapsibleState.None))
62
}
63
0 commit comments