Hide student count denominator if zero
This commit is contained in:
parent
ca69ddf6f1
commit
4145ed3cc8
|
@ -37,7 +37,7 @@ function ClassTable(props) {
|
|||
<Table.Cell>{x.is_cancelled ? 'Cancelled' : moment.utc(x.datetime).local().format('LT')}</Table.Cell>
|
||||
<Table.Cell>{x.instructor_name}</Table.Cell>
|
||||
<Table.Cell>{x.cost === '0.00' ? 'Free' : '$'+x.cost}</Table.Cell>
|
||||
<Table.Cell>{x.student_count} {x.max_students && '/ '+x.max_students}</Table.Cell>
|
||||
<Table.Cell>{x.student_count} {!!x.max_students && '/ '+x.max_students}</Table.Cell>
|
||||
</Table.Row>
|
||||
)
|
||||
:
|
||||
|
@ -174,7 +174,7 @@ export function ClassDetail(props) {
|
|||
</Table.Row>
|
||||
<Table.Row>
|
||||
<Table.Cell>Students:</Table.Cell>
|
||||
<Table.Cell>{clazz.student_count} {clazz.max_students && '/ '+clazz.max_students}</Table.Cell>
|
||||
<Table.Cell>{clazz.student_count} {!!clazz.max_students && '/ '+clazz.max_students}</Table.Cell>
|
||||
</Table.Row>
|
||||
</Table.Body>
|
||||
</BasicTable>
|
||||
|
|
Loading…
Reference in New Issue
Block a user