From 82d50bc33ccc744cbb0fc712255a13cd0636669f Mon Sep 17 00:00:00 2001 From: Stephanie Leary Date: Fri, 24 Mar 2023 20:28:10 +0000 Subject: [PATCH] Disable grid cell tooltips by default Signed-off-by: Stephanie Leary --- Open-ILS/src/eg2/src/app/share/grid/grid-body-cell.component.html | 4 ++-- Open-ILS/src/eg2/src/app/share/grid/grid-column.component.ts | 4 ++-- Open-ILS/src/eg2/src/app/share/grid/grid.ts | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Open-ILS/src/eg2/src/app/share/grid/grid-body-cell.component.html b/Open-ILS/src/eg2/src/app/share/grid/grid-body-cell.component.html index e1eeae7a65..137b2bedcd 100644 --- a/Open-ILS/src/eg2/src/app/share/grid/grid-body-cell.component.html +++ b/Open-ILS/src/eg2/src/app/share/grid/grid-body-cell.component.html @@ -1,6 +1,6 @@
@@ -13,7 +13,7 @@
; - @Input() disableTooltip: boolean; + @Input() enableTooltip: boolean; @Input() asyncSupportsEmptyTermClick: boolean; // Required columns are those that must be present in any auto-generated @@ -77,7 +77,7 @@ export class GridColumnComponent implements OnInit { col.isIndex = this.index === true; col.cellTemplate = this.cellTemplate; col.cellContext = this.cellContext; - col.disableTooltip = this.disableTooltip; + col.enableTooltip = this.enableTooltip; col.isSortable = this.sortable; col.isFilterable = this.filterable; col.filterOperator = this.initialFilterOperator; 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 3ae1d50023..7c117d18f6 100644 --- a/Open-ILS/src/eg2/src/app/share/grid/grid.ts +++ b/Open-ILS/src/eg2/src/app/share/grid/grid.ts @@ -40,7 +40,7 @@ export class GridColumn { isFilterable: boolean; isFiltered: boolean; isMultiSortable: boolean; - disableTooltip: boolean; + enableTooltip: boolean; asyncSupportsEmptyTermClick: boolean; comparator: (valueA: any, valueB: any) => number; required = false; @@ -91,7 +91,7 @@ export class GridColumn { col.isIndex = this.isIndex; col.cellTemplate = this.cellTemplate; col.cellContext = this.cellContext; - col.disableTooltip = this.disableTooltip; + col.enableTooltip = this.enableTooltip; col.isSortable = this.isSortable; col.isFilterable = this.isFilterable; col.isMultiSortable = this.isMultiSortable; -- 2.11.0