LP1904036 Merge repair
authorBill Erickson <berickxx@gmail.com>
Tue, 13 Jul 2021 14:46:55 +0000 (10:46 -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 7fb1efc..ba9918f 100644 (file)
@@ -402,19 +402,6 @@ export class GridColumnSet {
             this.columns.filter(c => c.required && !c.visible));
     }
 
-    // Sorted visible columns followed by sorted non-visible columns.
-    // Note we don't sort this.columns directly as it would impact
-    // grid column display ordering.
-    sortForColPicker(): GridColumn[] {
-        const visible = this.columns.filter(c => c.visible);
-        const invisible = this.columns.filter(c => !c.visible);
-
-        visible.sort((a, b) => a.label < b.label ? -1 : 1);
-        invisible.sort((a, b) => a.label < b.label ? -1 : 1);
-
-        return visible.concat(invisible);
-    }
-
     insertBefore(source: GridColumn, target: GridColumn) {
         let targetIdx = -1;
         let sourceIdx = -1;