From 8d4553faf96c4fa77c866e8943316dcb60a85afa Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 20 Oct 2025 22:10:21 +0100 Subject: [PATCH] When editing a memo, use input type datetime-local instead of text to allow the use of calendar to change date. Potentially this would allow to get ride of format check --- web/src/components/DateTimeInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/DateTimeInput.tsx b/web/src/components/DateTimeInput.tsx index 6d0c126fc..852369e7c 100644 --- a/web/src/components/DateTimeInput.tsx +++ b/web/src/components/DateTimeInput.tsx @@ -18,7 +18,7 @@ interface Props { const DateTimeInput: React.FC = ({ value, onChange }) => { return ( {