mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
Calendar: Prefer icon from link registry, fall back to app icon if it's not set
This commit is contained in:
parent
60a486298c
commit
7b466aed56
@ -498,7 +498,8 @@ var et2_calendar_event = /** @class */ (function (_super) {
|
||||
}
|
||||
else {
|
||||
if (this.options.value.app !== 'calendar') {
|
||||
icons.push('<img src="' + this.egw().image('navbar', this.options.value.app) + '" title="' + this.egw().lang(this.options.value.app) + '"/>');
|
||||
var app_icon = "" + (egw.link_get_registry(this.options.value.app, 'icon') || (this.options.value.app + '/navbar'));
|
||||
icons.push('<img src="' + this.egw().image(app_icon) + '" title="' + this.egw().lang(this.options.value.app) + '"/>');
|
||||
}
|
||||
if (this.options.value.priority == 3) {
|
||||
icons.push('<img src="' + this.egw().image('high', 'calendar') + '" title="' + this.egw().lang('high priority') + '"/>');
|
||||
|
@ -633,7 +633,8 @@ export class et2_calendar_event extends et2_valueWidget implements et2_IDetached
|
||||
{
|
||||
if(this.options.value.app !== 'calendar')
|
||||
{
|
||||
icons.push('<img src="'+this.egw().image('navbar',this.options.value.app)+'" title="'+this.egw().lang(this.options.value.app)+'"/>');
|
||||
let app_icon = ""+(egw.link_get_registry(this.options.value.app,'icon') || (this.options.value.app + '/navbar'));
|
||||
icons.push('<img src="'+this.egw().image(app_icon)+'" title="'+this.egw().lang(this.options.value.app)+'"/>');
|
||||
}
|
||||
if(this.options.value.priority == 3)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user