mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-23 16:13:50 +00:00
feature: copy ranges
This commit is contained in:
@@ -40,7 +40,7 @@ export const ISOToDate = (str: string|null): Date|null => {
|
||||
let
|
||||
[year, month, day] = str.split('-').map(p => parseInt(p));
|
||||
|
||||
return new Date(year, month-1, day);
|
||||
return new Date(year, month-1, day, 0, 0, 0, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user