mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 04:49:21 +00:00
Fix little bug
This commit is contained in:
parent
aa44688d66
commit
b4140e61ad
@ -75,7 +75,7 @@ class JoinGroupPaneBodyState extends State<_JoinGroupPaneBody> {
|
|||||||
]..addAll(_groups.map((e) => RadioListTile(
|
]..addAll(_groups.map((e) => RadioListTile(
|
||||||
value: e.id,
|
value: e.id,
|
||||||
groupValue: _currChoice,
|
groupValue: _currChoice,
|
||||||
onChanged: (v) => setState(() => _currChoice = _currChoice),
|
onChanged: (v) => setState(() => _currChoice = e.id),
|
||||||
title: Text(e.name),
|
title: Text(e.name),
|
||||||
subtitle: Text(e.membershipText),
|
subtitle: Text(e.membershipText),
|
||||||
))),
|
))),
|
||||||
|
Loading…
Reference in New Issue
Block a user