We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2ca699 commit eedcd3aCopy full SHA for eedcd3a
src/webview/common-ext/createComponentHelpers.ts
@@ -271,8 +271,7 @@ export function getDevfileTags(url?: string): string[] {
271
.flatMap((_devfileRegistry) => _devfileRegistry.devfiles).sort(devfileSort)
272
.flatMap((_devfile) => _devfile.tags))
273
]
274
- return devfileTags.filter((devfileTag) => !devfileTag.toLowerCase().includes('deprecate'))
275
- .sort((a, b) => a.localeCompare(b));
+ return devfileTags.filter((devfileTag) => !devfileTag.toLowerCase().includes('deprecate'));
276
}
277
278
function devfileSort(a: Devfile, b: Devfile): number {
0 commit comments