From f59f6bbc3f28db7cf2893d8b23f09a7146db1fef Mon Sep 17 00:00:00 2001 From: nathangray Date: Tue, 19 Nov 2019 15:56:12 -0700 Subject: [PATCH] Calendar: Fix favorites with accounts not in primary group only show ID in sidebox owner --- calendar/js/et2_widget_owner.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/calendar/js/et2_widget_owner.js b/calendar/js/et2_widget_owner.js index 17f5d14734..6f82eff507 100644 --- a/calendar/js/et2_widget_owner.js +++ b/calendar/js/et2_widget_owner.js @@ -122,7 +122,10 @@ var et2_calendar_owner = (function(){ "use strict"; return et2_taglist_email.ext if(value.id == value.label) { // Proper label was not fount by parent - ask directly - egw.json('calendar_owner_etemplate_widget::ajax_owner',value.id,function(data) {value.label = data;}, this).sendRequest(); + egw.json('calendar_owner_etemplate_widget::ajax_owner',value.id,function(data) { + this.widget.options.value[this.i].label = data; + this.widget.set_value(this.widget.options.value); + }, this,true,{widget: this, i: i}).sendRequest(); } }