From 21fedcdc5d02c528b3f40dfe281f2ea821339ace Mon Sep 17 00:00:00 2001 From: Kim Rutherford Date: Thu, 12 Dec 2024 17:54:49 +1300 Subject: [PATCH] Don't sort throughput type, use configured order Refs pombase/website#2297 --- .../annotation-table-throughput-filter.component.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/app/annotation-table-throughput-filter/annotation-table-throughput-filter.component.ts b/src/app/annotation-table-throughput-filter/annotation-table-throughput-filter.component.ts index 23fbc4ae..6db8d8b4 100644 --- a/src/app/annotation-table-throughput-filter/annotation-table-throughput-filter.component.ts +++ b/src/app/annotation-table-throughput-filter/annotation-table-throughput-filter.component.ts @@ -74,8 +74,5 @@ export class AnnotationTableThroughputFilterComponent implements OnInit, OnChang } } - this.choiceData.sort((a, b) => { - return a.displayName.localeCompare(b.displayName); - }); } }