From: Bill Erickson Date: Tue, 29 Jun 2021 17:50:56 +0000 (-0400) Subject: LP1904036 Grid gets dateOnlyIntervalField support X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=f974224dc269f91036c57693cd68d0d69dab0ff0;p=working%2FEvergreen.git LP1904036 Grid gets dateOnlyIntervalField support E.g. show the time component of a due date if the circulation has a non-day-granular duration. Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/eg2/src/app/share/grid/grid-column.component.ts b/Open-ILS/src/eg2/src/app/share/grid/grid-column.component.ts index 72d765e2a5..8b9e46f819 100644 --- a/Open-ILS/src/eg2/src/app/share/grid/grid-column.component.ts +++ b/Open-ILS/src/eg2/src/app/share/grid/grid-column.component.ts @@ -81,6 +81,7 @@ export class GridColumnComponent implements OnInit { col.datePlusTime = this.datePlusTime; col.ternaryBool = this.ternaryBool; col.timezoneContextOrg = this.timezoneContextOrg; + col.dateOnlyIntervalField = this.dateOnlyIntervalField; col.idlClass = this.idlClass; col.dateOnlyIntervalField = this.dateOnlyIntervalField; col.isAuto = false; 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 a19c01fd55..110b732817 100644 --- a/Open-ILS/src/eg2/src/app/share/grid/grid.ts +++ b/Open-ILS/src/eg2/src/app/share/grid/grid.ts @@ -99,6 +99,7 @@ export class GridColumn { col.datePlusTime = this.datePlusTime; col.ternaryBool = this.ternaryBool; col.timezoneContextOrg = this.timezoneContextOrg; + col.dateOnlyIntervalField = this.dateOnlyIntervalField; col.idlClass = this.idlClass; col.isAuto = this.isAuto;