Skip to content

Commit 0faaa6f

Browse files
authored
Merge branch 'master' into didimmova/improve-component-themes
2 parents 1082f8c + e9b1954 commit 0faaa6f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ All notable changes for each version of this project will be documented in this
1313
- A column's `minWidth` and `maxWidth` constrain the user-specified `width` so that it cannot go outside their bounds.
1414
- In SSR mode grid with height 100% or with no height will render on the server with % size and with no data. The grid will show either the empty grid template or the loading indicator (if isLoading is true).
1515
- In SSR mode grid with width 100% or with no width will render on the server with % size and with all columns.
16+
- The `pagingMode` property can now be set as simple strings `'local'` and `'remote'` and does not require importing the `GridPagingMode` enum.
1617
- `IgxHierarchicalGrid`
1718
- Introduced a new advanced filtering capability that enables top-level records to be dynamically refined based on the attributes or data of their associated child records.
1819
- Added a new `schema` input property that can be used to pass collection of `EntityType` objects. This property is required for remote data scenarios.

projects/igniteui-angular/src/lib/data-operations/filtering-strategy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ export abstract class BaseFilteringStrategy implements IFilteringStrategy {
194194
item.value = key ? new Date(key) : key;
195195
} else if (column.dataType === GridColumnDataType.Time) {
196196
const date = key ? new Date(key) : key;
197-
key = date ? new Date().setHours(date.getHours(), date.getMinutes(), date.getSeconds()) : key;
197+
key = date ? new Date().setHours(date.getHours(), date.getMinutes(), date.getSeconds(), date.getMilliseconds()) : key;
198198
item.value = key ? new Date(key) : key;
199199
} else if (column.dataType === GridColumnDataType.Date) {
200200
const date = key ? new Date(key) : key;

0 commit comments

Comments
 (0)