Skip to content

Commit

Permalink
feat: Added user first and last name for LPR.
Browse files Browse the repository at this point in the history
  • Loading branch information
saleem-latif committed Jan 14, 2025
1 parent ef7c65f commit 14ed41c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/components/EnrollmentsTable/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,24 @@ const EnrollmentsTable = () => {
key: 'user_email',
columnSortable: true,
},
{
label: intl.formatMessage({
id: 'adminPortal.enrollmentsTable.user_first_name',
defaultMessage: 'First Name',
description: 'Title for the first name column in the enrollments table',
}),
key: 'user_first_name',
columnSortable: true,
},
{
label: intl.formatMessage({
id: 'adminPortal.enrollmentsTable.user_last_name',
defaultMessage: 'Last Name',
description: 'Title for the last name column in the enrollments table',
}),
key: 'user_last_name',
columnSortable: true,
},
{
label: intl.formatMessage({
id: 'adminPortal.enrollmentsTable.courseTitle',
Expand Down

0 comments on commit 14ed41c

Please sign in to comment.