Skip to content

Commit

Permalink
Merge pull request #360 from openedx/knguyen2/ENT-7764
Browse files Browse the repository at this point in the history
feat: update primary search field to customer name
  • Loading branch information
katrinan029 authored Oct 13, 2023
2 parents dfc178f + 3427697 commit a93ad7e
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,27 +66,27 @@ const DashboardDataTable = () => {
FilterStatusComponent={FilterStatus}
columns={[
{
Header: 'Plan ID',
accessor: 'uuid',
Cell: PlanIdHyperlink,
Header: 'Customer name',
accessor: 'enterpriseCustomerName',
disableSortBy: true,
Cell: CustomerNameHyperlink,
},
{
Header: 'Plan name',
accessor: 'title',
Cell: PlanTitleHyperlink,
},
{
Header: 'Plan ID',
accessor: 'uuid',
Cell: PlanIdHyperlink,
},
{
Header: 'Plan Status',
accessor: 'isActive',
disableFilters: true,
Cell: DashboardTableBadges,
},
{
Header: 'Customer name',
accessor: 'enterpriseCustomerName',
disableSortBy: true,
Cell: CustomerNameHyperlink,
},
{
Header: 'Start date',
accessor: 'activeDatetime',
Expand Down

0 comments on commit a93ad7e

Please sign in to comment.