aboutsummaryrefslogtreecommitdiff
path: root/static/globals.ts
diff options
context:
space:
mode:
Diffstat (limited to 'static/globals.ts')
-rw-r--r--static/globals.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/static/globals.ts b/static/globals.ts
index eb7488c0..2fc12933 100644
--- a/static/globals.ts
+++ b/static/globals.ts
@@ -30,6 +30,8 @@ window.addNewEvent = () => {
let ev = new VEvent();
let uid = uuid()
let now = new Date()
+ /* Round seconds to 0, since time inputs wants exact seconds */
+ now.setUTCSeconds(0);
ev.setProperties([
['uid', uid],
['dtstart', now, 'date-time'],