File tree Expand file tree Collapse file tree
libraries-manager/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ interface RoleCardProps extends CardTitleProps {
2121const CardTitle = ( { title, userCounter } : CardTitleProps ) => (
2222 < div className = "d-flex align-items-center" >
2323 < span className = "mr-4 text-primary" > { title } </ span >
24- { userCounter !== null && userCounter !== undefined && (
24+ { userCounter !== null && (
2525 < span className = "d-flex align-items-center font-weight-normal" >
2626 < Icon src = { Person } className = "mr-1" />
2727 { userCounter }
Original file line number Diff line number Diff line change @@ -80,7 +80,6 @@ const TeamTable = () => {
8080 iconBefore = { Edit }
8181 variant = "link"
8282 size = "sm"
83- // TODO: update the view with the team member view
8483 onClick = { ( ) => navigate ( `/authz/libraries/${ libraryId } /${ row . original . username } ` ) }
8584 >
8685 { intl . formatMessage ( messages [ 'authz.libraries.team.table.edit.action' ] ) }
You can’t perform that action at this time.
0 commit comments