fix(calendar): Fix empty recurence list when creating event from mail

This commit is contained in:
smizrahi
2024-06-03 22:38:58 +02:00
parent 1a47fdb7d6
commit 2756176503
9 changed files with 131 additions and 39 deletions
@@ -328,12 +328,6 @@
this.component.repeat.month.type == 'bymonthday';
};
this.frequencies = function () {
return _.filter($window.repeatFrequencies, function (frequency) {
return frequency[0] != 'custom' || vm.component.repeat.frequency == 'custom';
});
};
this.changeFrequency = function () {
if (this.component.repeat.frequency == 'custom')
this.showRecurrenceEditor = true;