Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the way wl dates are parsed to a string. #655

Merged
merged 1 commit into from
Feb 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions src/utils/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -362,11 +362,10 @@ export function formatRuleConditions(conditions) {
export const watchlistDateFormat = input => {
const stringDate = new Date(input);
if (stringDate === "Invalid Date") return "Invalid Date";
const day = stringDate.getDate(); // use getDate(). getDay() returns the day of the week
const month = stringDate.getMonth() + 1; // 0 based
const year = stringDate.getFullYear();

return `${year}-${month}-${day}`;
const formattedDate = stringDate.getFullYear()
+ '-' + ('0' + (stringDate.getMonth()+1)).slice(-2)
+ '-' + ('0' + stringDate.getDate()).slice(-2);
return formattedDate;
};

export const lpad5 = val => {
Expand Down