Skip to content

Commit

Permalink
remove nones
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesPeck committed Dec 2, 2024
1 parent 54a1cd2 commit c393fed
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ class UsersList extends React.Component {
style: { whiteSpace: 'unset' },
Cell: row => {
const user = row.original;
return user.aaAffiliation || '<<none>>';
return user.aaAffiliation || '';
},
},
{
Expand All @@ -234,7 +234,7 @@ class UsersList extends React.Component {
style: { whiteSpace: 'unset' },
Cell: row => {
const user = row.original;
return user.piName || '<<none>>';
return user.piName || '';
},
},
{
Expand All @@ -243,7 +243,7 @@ class UsersList extends React.Component {
style: { whiteSpace: 'unset' },
Cell: row => {
const user = row.original;
return user.projectName || '<<none>>';
return user.projectName || '';
},
},
{
Expand All @@ -252,7 +252,7 @@ class UsersList extends React.Component {
style: { whiteSpace: 'unset' },
Cell: row => {
const user = row.original;
return user.studyAdmin.join(', ') || '<<none>>';
return user.studyAdmin.join(', ') || '';
},
},
{
Expand All @@ -261,7 +261,7 @@ class UsersList extends React.Component {
style: { whiteSpace: 'unset' },
Cell: row => {
const user = row.original;
return user.studyReadWrite.join(', ') || '<<none>>';
return user.studyReadWrite.join(', ') || '';
},
},
{
Expand All @@ -270,7 +270,7 @@ class UsersList extends React.Component {
style: { whiteSpace: 'unset' },
Cell: row => {
const user = row.original;
return user.studyRead.join(', ') || '<<none>>';
return user.studyRead.join(', ') || '';
},
},
{
Expand All @@ -279,7 +279,7 @@ class UsersList extends React.Component {
style: { whiteSpace: 'unset' },
Cell: row => {
const user = row.original;
return user.dataSource || '<<none>>';
return user.dataSource || '';
},
},
{
Expand Down

0 comments on commit c393fed

Please sign in to comment.