From 66aecb2c870ff896610f0e0330d29958e48b19f0 Mon Sep 17 00:00:00 2001 From: n1spx <79034359+n1spx@users.noreply.github.com> Date: Wed, 9 Jul 2025 00:05:01 -0500 Subject: [PATCH] Update startDateTime example config.md Fix missing parameter in JSON string --- docs/config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/config.md b/docs/config.md index 787c027..93bfdb6 100644 --- a/docs/config.md +++ b/docs/config.md @@ -561,7 +561,7 @@ Initial start date and time (browser timezone) for fetched data. startDateTime.setHours(0, 0, 0, 0); startDateTime.setDate(1); window.owntracks.config = { - startDateTime, + startDateTime: startDateTime, }; ```