aboutsummaryrefslogtreecommitdiff
path: root/static/components/vevent-description.ts
diff options
context:
space:
mode:
Diffstat (limited to 'static/components/vevent-description.ts')
-rw-r--r--static/components/vevent-description.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/static/components/vevent-description.ts b/static/components/vevent-description.ts
index f0d224be..463725f1 100644
--- a/static/components/vevent-description.ts
+++ b/static/components/vevent-description.ts
@@ -28,8 +28,8 @@ class ComponentDescription extends ComponentVEvent {
if ((d = data.getProperty(p))) {
let key = p.toLowerCase();
let f = formatters.get(key);
- if (f) f(el, d);
- else window.formatters.get('default')!(el, d);
+ if (f) f(el, data, d);
+ else window.formatters.get('default')!(el, data, d);
}
}