aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--static/compiler-service.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/static/compiler-service.ts b/static/compiler-service.ts
index b14e79676..3eb7911aa 100644
--- a/static/compiler-service.ts
+++ b/static/compiler-service.ts
@@ -140,7 +140,10 @@ export class CompilerService {
return {value: compiler.group, label: compiler.groupName || compiler.group};
})
.sort((a, b) => {
- return a.label.localeCompare(b.label, undefined /* Ignore language */, {sensitivity: 'base'}) === 0;
+ // I'm pretty sure the @types are wrong and _Chain.sort is just Array.prototype.sort
+ return a.label.localeCompare(b.label, undefined /* Ignore language */, {
+ sensitivity: 'base',
+ }) as unknown as boolean;
})
.value();
}