Merge pull request #5238 from pangeachat/5222-show-language-in-created-course

chore: show course info chips in one column mode
This commit is contained in:
ggurdin 2026-01-16 13:00:44 -05:00 committed by GitHub
commit cd1a5e695d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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,