From f61eabc905cb70751a577ebb9db7b1d8e8b27b81 Mon Sep 17 00:00:00 2001 From: Harsh Mahajan <127186841+HarshMN2345@users.noreply.github.com> Date: Wed, 6 Aug 2025 12:26:34 +0530 Subject: [PATCH] Update content.svelte --- src/lib/components/filters/content.svelte | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib/components/filters/content.svelte b/src/lib/components/filters/content.svelte index 0f237a429..85f2960da 100644 --- a/src/lib/components/filters/content.svelte +++ b/src/lib/components/filters/content.svelte @@ -65,8 +65,7 @@ value = column?.array ? [] : null; if (column?.type === 'datetime') { const now = new Date(); - const datetimeString = now.toISOString().slice(0, 16); - value = datetimeString; + value = now.toISOString().slice(0, 16); } });