Skip to content
This repository was archived by the owner on Apr 2, 2024. It is now read-only.

Commit

Permalink
Join resource-type value array to a string, fixes displaying multiple…
Browse files Browse the repository at this point in the history
… values (#220)
  • Loading branch information
Mark90 authored May 2, 2023
1 parent 2592b8c commit eba7fd0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const mapSplitFields = (
return [key, values];
}

return [key, values[0]];
return [key, values.join(", ")];
})
.map(([key, values]) => {
if (key === "in_use_by_ids" && values) {
Expand Down

0 comments on commit eba7fd0

Please sign in to comment.