From e10e0e35044e9bcc03903b8f44e60417e1141b08 Mon Sep 17 00:00:00 2001 From: Anton SHEPILOV Date: Thu, 30 May 2024 14:12:26 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9BChanged=20date=20format=20to=20the?= =?UTF-8?q?=20EU?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tdrive/frontend/src/app/features/global/utils/Numbers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrive/frontend/src/app/features/global/utils/Numbers.ts b/tdrive/frontend/src/app/features/global/utils/Numbers.ts index 39d89f08..72aaea74 100755 --- a/tdrive/frontend/src/app/features/global/utils/Numbers.ts +++ b/tdrive/frontend/src/app/features/global/utils/Numbers.ts @@ -137,5 +137,5 @@ export const formatDateShort = (time : number | string) => { const hours = padZero(date.getHours()); const minutes = padZero(date.getMinutes()); - return `${month}.${day}.${year} ${hours}:${minutes}`; + return `${day}.${month}.${year} ${hours}:${minutes}`; };