diff --git a/webclient/src/Classes.js b/webclient/src/Classes.js index 5cabf98..8a600b6 100644 --- a/webclient/src/Classes.js +++ b/webclient/src/Classes.js @@ -36,7 +36,7 @@ function ClassTable(props) { {x.is_cancelled ? 'Cancelled' : moment.utc(x.datetime).local().format('LT')} {x.instructor_name} {x.cost === '0.00' ? 'Free' : '$'+x.cost} - {x.student_count} + {x.student_count} {x.max_students && '/ '+x.max_students} ) : @@ -144,7 +144,7 @@ export function ClassDetail(props) { Students: - {clazz.student_count} + {clazz.student_count} {clazz.max_students && '/ '+clazz.max_students} diff --git a/webclient/src/InstructorClasses.js b/webclient/src/InstructorClasses.js index 9f5d10d..ed6fb42 100644 --- a/webclient/src/InstructorClasses.js +++ b/webclient/src/InstructorClasses.js @@ -45,7 +45,7 @@ function InstructorClassEditor(props) { />