Skip to content

Commit e9b1954

Browse files
gedinakovaChronosSFteodosiah
authored
fix(15674): ESF to show unique time values (#15715)
Co-authored-by: Stamen Stoychev <[email protected]> Co-authored-by: Teodosia Hristodorova <[email protected]>
1 parent a82dbae commit e9b1954

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
@@ -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)