From 9f14061efd336a4e0f922071688e63aa0700cbd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Le=20Bihan?= Date: Thu, 4 Jan 2024 22:21:11 +0100 Subject: [PATCH] Now using european date format --- front/components/V2/SearchHistory.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/components/V2/SearchHistory.tsx b/front/components/V2/SearchHistory.tsx index 71ea3d7..ad5356e 100644 --- a/front/components/V2/SearchHistory.tsx +++ b/front/components/V2/SearchHistory.tsx @@ -46,7 +46,7 @@ const HistoryRowComponent = (props: historyRowProps) => { {props.query} - {props.timestamp.toLocaleDateString()} + {props.timestamp.toLocaleDateString(["fr-FR", "en-GB"])} ); };