diff --git a/js/apps/admin-ui/src/authentication/RequiredActions.tsx b/js/apps/admin-ui/src/authentication/RequiredActions.tsx index fbaa26ee18..48e4f528d7 100644 --- a/js/apps/admin-ui/src/authentication/RequiredActions.tsx +++ b/js/apps/admin-ui/src/authentication/RequiredActions.tsx @@ -20,7 +20,7 @@ type DataType = RequiredActionProviderRepresentation & }; type Row = { - name: string; + name?: string; enabled: boolean; defaultAction: boolean; data: DataType; @@ -173,14 +173,14 @@ export const RequiredActions = () => { displayKey: "enabled", cellRenderer: (row) => ( { updateAction(row.data, "enabled"); }} - aria-label={toKey(row.name)} + aria-label={row.name} /> ), width: 20, @@ -191,7 +191,7 @@ export const RequiredActions = () => { thTooltipText: "authDefaultActionTooltip", cellRenderer: (row) => ( { onChange={() => { updateAction(row.data, "defaultAction"); }} - aria-label={toKey(row.name)} + aria-label={row.name} /> ), width: 20,