Skip to content

Commit

Permalink
Update DeletedMailboxes.jsx
Browse files Browse the repository at this point in the history
Added Date Deleted
  • Loading branch information
BNWEIN committed Jun 28, 2024
1 parent 764f027 commit ef0dfb7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/views/email-exchange/administration/DeletedMailboxes.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ const Offcanvas = (row, rowIndex, formatExtraData) => {
{ label: 'Exchange Guid', value: `${row.ExchangeGuid}` },
{ label: 'Archive Guid', value: `${row.ArchiveGuid}` },
{ label: 'Id', value: `${row.Id}` },
{ label: 'Date Deleted', value: `${row.WhenSoftDeleted}` },
]}
actions={[
{
Expand Down Expand Up @@ -87,6 +88,12 @@ const columns = [
exportSelector: 'primarySmtpAddress',
minWidth: '350px',
},
{
name: 'Date Deleted',
selector: (row) => row['WhenSoftDeleted'],
sortable: true,
exportSelector: 'WhenSoftDeleted',
},
{
name: 'Recipient Type',
selector: (row) => row['recipientType'],
Expand Down

0 comments on commit ef0dfb7

Please sign in to comment.