1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-11-22 04:49:21 +00:00

Fix little bug

This commit is contained in:
Pierre HUBERT 2021-10-28 16:20:31 +02:00
parent aa44688d66
commit b4140e61ad

View File

@ -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),
))), ))),