diff --git a/frontend/main.ts b/frontend/main.ts index dfe8134..6fa0a27 100644 --- a/frontend/main.ts +++ b/frontend/main.ts @@ -22,7 +22,7 @@ document.addEventListener('DOMContentLoaded', function() { function setCurrentdate(input: HTMLInputElement) { if(input) { - input.value = (new Date().toJSON().slice(0,19)); + input.value = (new Date().toJSON().slice(0,16)); } }