chore: show course info chips in one column mode

This commit is contained in:
ggurdin 2026-01-16 13:00:19 -05:00
parent 7ecd6ce3c8
commit dac3c5edf5
No known key found for this signature in database
GPG key ID: A01CB41737CBB478

View file

@ -296,7 +296,7 @@ class SpaceDetailsContent extends StatelessWidget {
],
Flexible(
child: Column(
spacing: 12.0,
spacing: isColumnMode ? 12.0 : 6.0,
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
@ -311,7 +311,7 @@ class SpaceDetailsContent extends StatelessWidget {
: FontWeight.bold,
),
),
if (isColumnMode && room.coursePlan != null)
if (room.coursePlan != null)
CourseInfoChips(
room.coursePlan!.uuid,
fontSize: 12.0,