Skip to content
Snippets Groups Projects
Commit ee62a87b authored by Robert Goldmann's avatar Robert Goldmann
Browse files

#542 - removed debug prints

parent f892a8fc
No related branches found
No related tags found
No related merge requests found
...@@ -351,13 +351,10 @@ function convertDateWithoutDots(dateString) ...@@ -351,13 +351,10 @@ function convertDateWithoutDots(dateString)
} }
else else
{ {
console.log("Date string has dots");
return dateString; return dateString;
} }
let a = dateString.substr(0, 2) + '.' + dateString.substr(2, 2) + '.' + dateString.substr(4, yearLength); return dateString.substr(0, 2) + '.' + dateString.substr(2, 2) + '.' + dateString.substr(4, yearLength);
console.log("converting date string from " + dateString + " to " + a);
return a;
} }
function validateForm(allowEmptyAmount = false) function validateForm(allowEmptyAmount = false)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment