Skip to content

Commit

Permalink
[SIEM][CASE] Add the correct user information to each comment (elasti…
Browse files Browse the repository at this point in the history
  • Loading branch information
cnasikas committed Mar 26, 2020
1 parent cffa6d1 commit 13f66df
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}));
};

0 comments on commit 13f66df

Please sign in to comment.