FIX: recurrence was not applied when selected in the form (#6820)
This commit is contained in:
parent
eaabbe5943
commit
523e0248e1
|
@ -137,6 +137,10 @@ export default Ember.Component.extend({
|
|||
text += ` timezones="${config.timezones.join("|")}"`;
|
||||
}
|
||||
|
||||
if (config.recurring) {
|
||||
text += ` recurring="${config.recurring}"`;
|
||||
}
|
||||
|
||||
text += `]`;
|
||||
|
||||
return text;
|
||||
|
|
Loading…
Reference in New Issue