From b4140e61ad1d4d1874e6f15c034a156c2a5ea0bf Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Thu, 28 Oct 2021 16:20:31 +0200 Subject: [PATCH] Fix little bug --- lib/forez/tour/join_group_pane.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/forez/tour/join_group_pane.dart b/lib/forez/tour/join_group_pane.dart index e4b8f41..ff45047 100644 --- a/lib/forez/tour/join_group_pane.dart +++ b/lib/forez/tour/join_group_pane.dart @@ -75,7 +75,7 @@ class JoinGroupPaneBodyState extends State<_JoinGroupPaneBody> { ]..addAll(_groups.map((e) => RadioListTile( value: e.id, groupValue: _currChoice, - onChanged: (v) => setState(() => _currChoice = _currChoice), + onChanged: (v) => setState(() => _currChoice = e.id), title: Text(e.name), subtitle: Text(e.membershipText), ))),