chore: in space analytics tab on small screens show language code in language dropdown (#4182)

This commit is contained in:
ggurdin 2025-09-29 15:33:17 -04:00 committed by GitHub
parent 9ef954a8d5
commit a51870ccec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -101,10 +101,13 @@ class SpaceAnalyticsView extends StatelessWidget {
children: [
if (controller.selectedLanguage != null)
Text(
controller.selectedLanguage!
.getDisplayName(context) ??
controller
.selectedLanguage!.displayName,
mini
? controller.selectedLanguage!.langCode
.toUpperCase()
: controller.selectedLanguage!
.getDisplayName(context) ??
controller
.selectedLanguage!.displayName,
style: TextStyle(
color:
theme.colorScheme.onPrimaryContainer,