We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 263a8f1 commit a37c8cfCopy full SHA for a37c8cf
src/notebooks/deepnote/converters/inputConverters.ts
@@ -28,6 +28,12 @@ function normalizeDateString(dateValue: unknown): string {
28
return dateValue;
29
}
30
31
+ // Detect ISO-style strings that start with YYYY-MM-DD (e.g., "2025-09-30T00:00:00+02:00")
32
+ // and extract just the date portion to avoid timezone shifts
33
+ if (/^\d{4}-\d{2}-\d{2}/.test(dateValue)) {
34
+ return dateValue.substring(0, 10);
35
+ }
36
+
37
try {
38
const date = new Date(dateValue);
39
if (isNaN(date.getTime())) {
0 commit comments