Skip to content

Commit

Permalink
CM-408: display members in task (#38)
Browse files Browse the repository at this point in the history
* CM-404: move individual to another group

* CM-405: add individual id

* CM-405: fix label in group tasks

* CM-405: fix eslint

* CM-408: display members

---------

Co-authored-by: Jan <[email protected]>
  • Loading branch information
jdolkowski and Jan authored Jan 9, 2024
1 parent 8cf0be1 commit 35790d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/GroupHistorySearcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function GroupHistorySearcher({
(groupHistory) => groupHistory?.version || EMPTY_STRING,
(groupHistory) => {
const jsonExt = groupHistory?.jsonExt ? JSON.parse(groupHistory.jsonExt) : null;
return jsonExt?.members ?? EMPTY_STRING;
return jsonExt?.members ? Object.values(jsonExt?.members).map((value) => `${value}, `) : EMPTY_STRING;
},
];

Expand Down

0 comments on commit 35790d2

Please sign in to comment.