From: Bill Erickson Date: Tue, 18 May 2021 20:59:23 +0000 (-0400) Subject: LP1904036 Grid wildcard column support cleanup X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=971a7e654718a1e5a056b3e6d025fc57a391b3e4;p=working%2FEvergreen.git LP1904036 Grid wildcard column support cleanup Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/eg2/src/app/share/grid/grid.ts b/Open-ILS/src/eg2/src/app/share/grid/grid.ts index 5563aa0f62..308517073a 100644 --- a/Open-ILS/src/eg2/src/app/share/grid/grid.ts +++ b/Open-ILS/src/eg2/src/app/share/grid/grid.ts @@ -163,7 +163,6 @@ export class GridColumnSet { const pathParts = dotpath.split(/\./); let oldField; - let oldFieldLabel = ''; // find the IDL class definition for the last element in the // path before the .* @@ -176,10 +175,6 @@ export class GridColumnSet { // link to another class. if (idlField && idlField['class'] && ( idlField.datatype === 'link' || idlField.datatype === 'org_unit')) { - - if (oldFieldLabel) { oldFieldLabel += ' : '; } - - oldFieldLabel += idlField.label; classObj = this.idl.classes[idlField['class']]; } else {