From: Jane Sandberg Date: Fri, 29 Jan 2021 00:19:31 +0000 (-0800) Subject: LP1857351 (follow-up): Fix typo that led to failing test X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=43a802ae2c56c9342bfd3a6a4556292d00760d3e;p=Evergreen.git LP1857351 (follow-up): Fix typo that led to failing test Signed-off-by: Jane Sandberg --- 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;