mirror of
https://framagit.org/JonathanMM/sutom.git
synced 2026-03-14 12:45:46 +01:00
Correction d'un bug avec le chronomètre
This commit is contained in:
parent
2b23579905
commit
9c8e3718f1
1 changed files with 1 additions and 1 deletions
|
|
@ -151,7 +151,7 @@ export default class Gestionnaire {
|
|||
|
||||
if (this._config.afficherChrono) {
|
||||
let statsTemps = this._stats.temps;
|
||||
if (statsTemps === null) {
|
||||
if (!statsTemps || statsTemps === null) {
|
||||
statsTemps = { moyenne: duree, nbParties: 1 };
|
||||
} else {
|
||||
statsTemps = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue