From c60a60422f69e29628b6c946a15be271e90015aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Wed, 10 Nov 2021 00:47:10 +0100 Subject: Basic event modification works again. --- static/jcal.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'static/jcal.ts') diff --git a/static/jcal.ts b/static/jcal.ts index 327a560d..59ee93b4 100644 --- a/static/jcal.ts +++ b/static/jcal.ts @@ -82,7 +82,7 @@ function jcal_property_to_xcal_property( let el = doc.createElementNS(xcal, key); - for (let v of asList(params[key])) { + for (let v of asList(params.get(key))) { let text = doc.createElementNS(xcal, 'text'); text.textContent = '' + v; el.appendChild(text); -- cgit v1.2.3