File tree Expand file tree Collapse file tree
src/authz-module/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,22 +8,22 @@ const PermissionTable = ({ permissionsTable, roles }) => (
88 < tr >
99 < th className = 'bg-light-100' > </ th >
1010 { roles . map ( role => (
11- < th key = { role . name } className = "text-center bg-light-100" > { role . name } </ th >
11+ < th key = { role . name } className = "text-center bg-light-100 py-3 " > { role . name } </ th >
1212 ) ) }
1313 </ tr >
1414 </ thead >
1515 < tbody >
1616 { permissionsTable . map ( resourceGroup => (
1717 < >
18- < tr className = "bg-info-100 text-primary lead " >
19- < td colSpan = { roles . length + 1 } className = "text-start py-3" >
18+ < tr className = "bg-info-100 text-primary" >
19+ < td colSpan = { roles . length + 1 } className = "text-start py-3 px-4 " >
2020 < strong > { resourceGroup . resourceLabel } </ strong >
2121 </ td >
2222 </ tr >
2323 {
2424 resourceGroup . permissions . map ( permission => (
2525 < tr key = { permission . key } className = 'border-top' >
26- < td className = "text-start d-flex align-items-center" > {
26+ < td className = "text-start d-flex align-items-center small px-4 py-3 " > {
2727 < Icon className = "d-inline-block mr-2" size = "sm" src = { actionsDictionary [ permission . actionKey ] } /> }
2828 { permission . label }
2929 </ td >
You can’t perform that action at this time.
0 commit comments