Calendar: Change event tooltip to use notification icon instead of alarm icon

This commit is contained in:
nathan 2022-10-24 13:27:46 -06:00
parent 176cba3afb
commit 14f372c74e
2 changed files with 1 additions and 1 deletions

View File

@ -696,7 +696,7 @@ export class et2_calendar_event extends et2_valueWidget implements et2_IDetached
if (this.options.value.alarm && !jQuery.isEmptyObject(this.options.value.alarm) && !this.options.value.is_private)
{
icons.push('<img src="' + this.egw().image('alarm', 'calendar') + '" title="' + this.egw().lang('alarm') + '"/>');
icons.push('<img src="' + this.egw().image('notification_message') + '" title="' + this.egw().lang('alarm') + '"/>');
}
if (this.options.value.participants[egw.user('account_id')] && this.options.value.participants[egw.user('account_id')][0] == 'U')
{

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB