Skip to content

Commit 73fdd61

Browse files
fix(15674): ESF to show unique time values (#15711)
Co-authored-by: Teodosia Hristodorova <[email protected]>
1 parent 03cdf59 commit 73fdd61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export abstract class BaseFilteringStrategy implements IFilteringStrategy {
147147
item.value = key ? new Date(key) : key;
148148
} else if (column.dataType === GridColumnDataType.Time) {
149149
const date = key ? new Date(key) : key;
150-
key = date ? new Date().setHours(date.getHours(), date.getMinutes(), date.getSeconds()) : key;
150+
key = date ? new Date().setHours(date.getHours(), date.getMinutes(), date.getSeconds(), date.getMilliseconds()) : key;
151151
item.value = key ? new Date(key) : key;
152152
} else if (column.dataType === GridColumnDataType.Date) {
153153
const date = key ? new Date(key) : key;

0 commit comments

Comments
 (0)