diff --git a/packages/basic.gblib/services/DialogKeywords.ts b/packages/basic.gblib/services/DialogKeywords.ts index f17d0d76..a330fcdc 100644 --- a/packages/basic.gblib/services/DialogKeywords.ts +++ b/packages/basic.gblib/services/DialogKeywords.ts @@ -272,7 +272,7 @@ export class DialogKeywords { nowUTC).toLocaleString(this.getContentLocaleWithCulture(contentLocale), { timeZone: process.env.DEFAULT_TIMEZONE })); - return now.getHours() + ':' + now.getMinutes(); + return now.getHours().toString().padStart(2, "0") + ':' + now.getMinutes().toString().padStart(2, "0"); } /**