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

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;