LP1904036 Grid wildcard column support cleanup
authorBill Erickson <berickxx@gmail.com>
Tue, 18 May 2021 20:59:23 +0000 (16:59 -0400)
committerGalen Charlton <gmc@equinoxOLI.org>
Fri, 28 Oct 2022 00:13:35 +0000 (20:13 -0400)
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Jane Sandberg <js7389@princeton.edu>
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>
Open-ILS/src/eg2/src/app/share/grid/grid.ts

index c22289e..c573a4b 100644 (file)
@@ -164,7 +164,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 .*
@@ -177,10 +176,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 {