Skip to content

Commit f694c2f

Browse files
fix(15674): ESF to show unique time values (#15716)
Co-authored-by: Teodosia Hristodorova <[email protected]>
1 parent 4586bf4 commit f694c2f

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export abstract class BaseFilteringStrategy implements IFilteringStrategy {
145145
item.value = key ? new Date(key) : key;
146146
} else if (column.dataType === GridColumnDataType.Time) {
147147
const date = key ? new Date(key) : key;
148-
key = date ? new Date().setHours(date.getHours(), date.getMinutes(), date.getSeconds()) : key;
148+
key = date ? new Date().setHours(date.getHours(), date.getMinutes(), date.getSeconds(), date.getMilliseconds()) : key;
149149
item.value = key ? new Date(key) : key;
150150
} else if (column.dataType === GridColumnDataType.Date) {
151151
const date = key ? new Date(key) : key;

0 commit comments

Comments
 (0)