This commit is contained in:
tiago.kayaya
2021-09-06 16:57:25 +01:00
parent 5e4229e210
commit 7592e7cb0e
+1 -1
View File
@@ -32,7 +32,7 @@ export class TimeService {
}
}
else{
let date = start.getDate() + "/" + (start.getMonth()+1) + "/" + start.getFullYear();
let date = this.addZero(start.getDate()) + "/" + this.addZero(start.getMonth()+1) + "/" + start.getFullYear();
return date;
}
}