From 43a802ae2c56c9342bfd3a6a4556292d00760d3e Mon Sep 17 00:00:00 2001 From: Jane Sandberg Date: Thu, 28 Jan 2021 16:19:31 -0800 Subject: [PATCH] LP1857351 (follow-up): Fix typo that led to failing test Signed-off-by: Jane Sandberg --- Open-ILS/src/eg2/src/app/core/idl.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/eg2/src/app/core/idl.service.ts b/Open-ILS/src/eg2/src/app/core/idl.service.ts index 4f00c53592..662c73586b 100644 --- a/Open-ILS/src/eg2/src/app/core/idl.service.ts +++ b/Open-ILS/src/eg2/src/app/core/idl.service.ts @@ -252,7 +252,7 @@ export class IdlService { // If no order specified and no labels to sort by, // default to sorting by field name - return (a.label < b.label) ? -1 : 1; + return (a.name < b.name) ? -1 : 1; }); newList = newList.concat(remainder); return newList; -- 2.43.2