Skip to content

Commit 0bb6c04

Browse files
committed
fix font on the Roles tab
Signed-off-by: Atif Ali <atali@redhat.com>
1 parent 342be07 commit 0bb6c04

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/gitops/components/project/ProjectRolesTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ const useRolesRowsDV = (roles: Role[], t: (key: string) => string): DataViewTr[]
254254
roles.forEach((role, index) => {
255255
rows.push([
256256
{
257-
cell: <strong>{role.name}</strong>,
257+
cell: role.name || '-',
258258
id: `name-${index}`,
259259
dataLabel: t('Name'),
260260
},

0 commit comments

Comments
 (0)