Skip to content

Commit

Permalink
[Course statistics] Update enrollments column title and helper text
Browse files Browse the repository at this point in the history
  • Loading branch information
rikurauhala committed Sep 30, 2024
1 parent 6375c81 commit 4b718b3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ export const AttemptsTable = ({
getRowContent: s => (s.rowObfuscated ? 'NA' : `${Number(s.passRate || 0).toFixed(2)} %`),
}),
getSortableColumn({
key: 'TOTAL_ENROLLMENTS',
title: 'Total\nenrollments',
helpText: 'All enrollments, including all rejected and aborted states',
key: 'ENROLLMENTS',
title: 'Enrollments',
helpText: 'All enrollments with enrolled state',
getRowVal: s => (s.rowObfuscated ? 'NA' : s.totalEnrollments),
}),
]
Expand Down

0 comments on commit 4b718b3

Please sign in to comment.