Skip to content

Commit

Permalink
show mentor in training history in course progress page
Browse files Browse the repository at this point in the history
  • Loading branch information
ngoerlitz committed May 20, 2024
1 parent 7ee71a8 commit ea7be73
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function getColumns(training_logs: TrainingLogModel[]): TableColumn<UserT
},
{
name: "Mentor",
selector: row => (row.mentor_id ? `${row.mentor?.first_name} ${row.mentor?.last_name} (${row.mentor_id})` : "N/A"),
selector: row => (row.mentor ? `${row.mentor?.first_name} ${row.mentor?.last_name} (${row.mentor_id})` : "N/A"),
},
{
name: "Datum",
Expand Down

0 comments on commit ea7be73

Please sign in to comment.