mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:44 +01:00
fix manual save-as-draft did not contain attachments
as getValues() contained empty attachments object overwriting the content
This commit is contained in:
parent
b41d7222a4
commit
27380821bb
@ -4059,7 +4059,7 @@ app.classes.mail = AppJS.extend(
|
||||
action = _egw_action.id;
|
||||
}
|
||||
|
||||
Object.assign(content, self.et2.getInstanceManager().getValues(self.et2, true));
|
||||
Object.assign(content, {...self.et2.getInstanceManager().getValues(self.et2, true), attachments: content.attachments});
|
||||
|
||||
if (content)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user