LP1904036 Grid wildcard column support cleanup
authorBill Erickson <berickxx@gmail.com>
Tue, 18 May 2021 20:59:23 +0000 (16:59 -0400)
committerBill Erickson <berickxx@gmail.com>
Tue, 14 Jun 2022 14:09:20 +0000 (10:09 -0400)
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Open-ILS/src/eg2/src/app/share/grid/grid.ts

index 5563aa0..3085170 100644 (file)
@@ -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 {