Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Maarch
MaarchCourrier
Commits
278714e1
Commit
278714e1
authored
Dec 08, 2021
by
Hamza HRAMCHI
Browse files
FIX #18927 TIME 0:10 set correct format
parent
c65af9a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/frontend/plugins/mail-editor/mail-editor.component.ts
View file @
278714e1
...
...
@@ -163,7 +163,7 @@ export class MailEditorComponent implements OnInit, OnDestroy {
this
.
emailAttach
.
attachments
.
forEach
((
element
:
any
,
index
:
number
)
=>
{
const
attach
:
any
=
this
.
emailAttachTool
.
attachments
.
list
.
find
((
item
:
any
)
=>
item
.
id
===
element
.
id
||
item
.
signedResponse
===
element
.
id
);
this
.
emailAttach
.
attachments
[
index
].
format
=
attach
.
format
;
this
.
emailAttach
.
attachments
[
index
].
format
=
attach
.
status
===
'
SIGN
'
?
'
pdf
'
:
attach
.
format
;
this
.
emailAttach
.
attachments
[
index
].
size
=
attach
.
size
;
});
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment