Fix sorting

Signed-off-by: Sanjula Ganepola <sanjulagane@gmail.com>
This commit is contained in:
Sanjula Ganepola
2024-10-20 18:56:05 -04:00
parent 551f6baa2f
commit f5424c9e7a
5 changed files with 7 additions and 7 deletions

View File

@@ -21,6 +21,6 @@ export default class InputsTreeItem extends TreeItem implements GithubLocalActio
items.push(new InputTreeItem(this.workspaceFolder, input));
}
return items;
return items.sort((a, b) => a.label!.toString().localeCompare(b.label!.toString()));
}
}