Fix alarm icon in calendar view (#4842)
This commit is contained in:
parent
e187d0880b
commit
eb69c1a239
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ function rcube_calendar_ui(settings)
|
|||
element.find('div.fc-event-time').append('<i class="fc-icon-sensitive"></i>');
|
||||
if (event.recurrence)
|
||||
element.find('div.fc-event-time').append('<i class="fc-icon-recurring"></i>');
|
||||
if (event.alarms)
|
||||
if (event.alarms || (event.valarms && event.valarms.length))
|
||||
element.find('div.fc-event-time').append('<i class="fc-icon-alarms"></i>');
|
||||
}
|
||||
if (event.status) {
|
||||
|
|
Loading…
Add table
Reference in a new issue