Add the role ID to the badge component (#29707)
This commit is contained in:
parent
05eda8d193
commit
ec1e770fea
2 changed files with 4 additions and 3 deletions
|
@ -408,7 +408,7 @@ class Header extends ImmutablePureComponent {
|
|||
}
|
||||
|
||||
account.get('roles', []).forEach((role) => {
|
||||
badges.push(<Badge key={`role-badge-${role.get('id')}`} label={<span>{role.get('name')}</span>} domain={domain} />);
|
||||
badges.push(<Badge key={`role-badge-${role.get('id')}`} label={<span>{role.get('name')}</span>} domain={domain} roleId={role.get('id')} />);
|
||||
});
|
||||
|
||||
return (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue