Add a separator for listing required permissions (#29272)
Closes #29213 Signed-off-by: James Hewitt <james.hewitt@uk.ibm.com>
This commit is contained in:
parent
927ba48f7a
commit
aa5c7c0310
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ export const ForbiddenSection = ({
|
|||
return (
|
||||
<PageSection>
|
||||
{t("forbidden", { count: permissionNeededArray.length })}{" "}
|
||||
{permissionNeededArray.map((p) => p.toString())}
|
||||
{permissionNeededArray.map((p) => p.toString()).join(", ")}
|
||||
</PageSection>
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue