FIX: recurrence was not applied when selected in the form (#6820)

This commit is contained in:
Joffrey JAFFEUX 2018-12-28 12:36:49 +01:00 committed by GitHub
parent eaabbe5943
commit 523e0248e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -137,6 +137,10 @@ export default Ember.Component.extend({
text += ` timezones="${config.timezones.join("|")}"`;
}
if (config.recurring) {
text += ` recurring="${config.recurring}"`;
}
text += `]`;
return text;