teste mobile done!

This commit is contained in:
Eudes Inácio
2024-06-04 09:38:11 +01:00
parent 9265622e65
commit 9fcf116102
19 changed files with 468 additions and 281 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ export class DateService {
const month = String(date.getMonth() + 1).padStart(2,'0');
const fullYear = date.getFullYear();
const formattedDate = `${fullYear}-${month}-${_date} 23:59`;
res.EndDate = formattedDate
res.EndDate = new Date(formattedDate).toISOString();
}