From 0627af259c804cbc48f473113307878b8c8ae665 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Tue, 18 May 2021 16:59:23 -0400 Subject: [PATCH] LP1904036 Grid wildcard column support cleanup Signed-off-by: Bill Erickson --- Open-ILS/src/eg2/src/app/share/grid/grid.ts | 5 ----- 1 file changed, 5 deletions(-) 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 { -- 2.11.0