Skip to content

Commit

Permalink
Show text if student is not planned
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Van Renterghem committed Nov 21, 2019
1 parent cf0f6ce commit 7263337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/students/StudentsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ class StudentsTable extends React.Component<IStudentsTableProps, IStudentTableSt

private renderPlannedCell(student: Student): React.ReactNode {
if (!student.isPlanned) {
return null;
return "Nee";
}
const openPlanningsDetailsFn = () => this.showPlanningDetails(student);
return (
Expand Down

0 comments on commit 7263337

Please sign in to comment.