fix le temps qui affiche 0s au lieu de 0.00s

front
Gwenael PLANCHON 1 year ago
parent 59dfe4e2eb
commit 1b4287aa7f

@ -102,7 +102,7 @@ export default {
calculerCompteARebours(){ calculerCompteARebours(){
if(this.tempsLimite<Date.now()){ if(this.tempsLimite<Date.now()){
//si il reste plus de temps //si il reste plus de temps
this.compteARebours=0 this.compteARebours=(0).toFixed(2)
//arreter le compte a rebours //arreter le compte a rebours
window.clearInterval(this.compteAReboursId) window.clearInterval(this.compteAReboursId)
return return

Loading…
Cancel
Save