mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +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
9412a3df55
commit
48fc65b4ef
@ -4080,7 +4080,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