diff --git a/module/rdd-timestamp.js b/module/rdd-timestamp.js index 831e48e1..5dbce01d 100644 --- a/module/rdd-timestamp.js +++ b/module/rdd-timestamp.js @@ -73,6 +73,9 @@ export class RdDTimestamp { * @returns L'entrée de DEFINITION_HEURES correspondant au signe */ static definition(signe) { + if (signe == undefined) { + signe = 0; + } if (Number.isInteger(signe)) { return DEFINITION_HEURES[signe % RDD_HEURES_PAR_JOUR]; } @@ -96,7 +99,7 @@ export class RdDTimestamp { } static imgSigne(signe) { - return `${signe.label}` + return signe == undefined ? '' : `${signe.label}` } static handleTimestampEditor(html, path, consumeTimestamp = async (path, timestamp) => { }) {