mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[SIEM][CASE] Add the correct user information to each comment (#61513)
This commit is contained in:
parent
65452bddf9
commit
f462b10863
1 changed files with 2 additions and 2 deletions
|
@ -112,8 +112,8 @@ export const transformComments = (
|
|||
...c,
|
||||
comment: flow(...pipes.map(p => t[p]))({
|
||||
value: c.comment,
|
||||
date: params.createdAt,
|
||||
user: params.createdBy.fullName ?? '',
|
||||
date: c.createdAt,
|
||||
user: c.createdBy.fullName ?? '',
|
||||
}).value,
|
||||
}));
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue