mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Et2SelectEmail: Fix fullEmail did not show full email
This commit is contained in:
parent
9da38628a0
commit
5acc8c55c8
@ -156,7 +156,12 @@ export class Et2SelectEmail extends Et2Select
|
||||
protected _createTagNode(item)
|
||||
{
|
||||
let tag = super._createTagNode(item);
|
||||
|
||||
tag.fullEmail = this.fullEmail;
|
||||
|
||||
// Re-set after setting fullEmail as that can change what we show
|
||||
tag.textContent = item.getTextLabel().trim();
|
||||
|
||||
if(!this.readonly && this.allowFreeEntries && this.allowDragAndDrop)
|
||||
{
|
||||
let dragTranslate = {x: 0, y: 0};
|
||||
|
Loading…
Reference in New Issue
Block a user