Skip to content

Commit 03905cf

Browse files
authored
Merge pull request #248 from aali309/GITOPS-9960
fix font on the Roles tab
2 parents 342be07 + 0bb6c04 commit 03905cf

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)