From: Stephanie Leary Date: Fri, 24 Mar 2023 20:28:10 +0000 (+0000) Subject: Disable grid cell tooltips by default X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=82d50bc33ccc744cbb0fc712255a13cd0636669f;p=working%2FEvergreen.git Disable grid cell tooltips by default Signed-off-by: Stephanie Leary --- 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;