From 456ce46fcfee2cfd01976d681c2105ab63449de1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Thu, 9 Jul 2020 13:18:39 +0200 Subject: Javascript now sends the description on event creation. --- static/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/script.js b/static/script.js index 678ff244..5024ea67 100644 --- a/static/script.js +++ b/static/script.js @@ -285,7 +285,7 @@ async function create_event (date, fd) { ['summary', ['text', fd.get("summary")]]]] if (fd.get("description")) { - tree.push(['description', ['text', fd.get("description")]]) + tree[1].push(['description', ['text', fd.get("description")]]) } let xmldoc = document.implementation.createDocument("", "", null) -- cgit v1.2.3