aboutsummaryrefslogtreecommitdiff
path: root/static/vevent.ts
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-12-09 19:17:46 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2021-12-09 19:17:46 +0100
commit15e50471776e702333920b188932f03ee1f8573b (patch)
tree6129332e6591cbe685f999550b6891c717126401 /static/vevent.ts
parentCSS to prevent event blocks from overflowing. (diff)
downloadcalp-15e50471776e702333920b188932f03ee1f8573b.tar.gz
calp-15e50471776e702333920b188932f03ee1f8573b.tar.xz
Propagate recurring events to frontend.
This handles each instance of a recurring event as its own unique event, which allows us to properly send it to the frontend. It's currently not possible to submit the repeating events back, but that is probably a underlying problem.
Diffstat (limited to 'static/vevent.ts')
-rw-r--r--static/vevent.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/static/vevent.ts b/static/vevent.ts
index c7dcd406..994c9425 100644
--- a/static/vevent.ts
+++ b/static/vevent.ts
@@ -60,7 +60,7 @@ class VEventValue {
value = 'UTC-OFFSET GOES HERE';
break;
case 'recur':
- value = v.asJcal();
+ value = v.to_jcal();
break;
case 'float':