increment version number
This commit is contained in:
parent
f58bc1d67d
commit
e2248b0c06
3 changed files with 12 additions and 12 deletions
|
|
@ -598,7 +598,7 @@ class ChatListController extends State<ChatList>
|
|||
setState(() {});
|
||||
// #Pangea
|
||||
if (archivedActiveRoom) {
|
||||
VRouter.of(context).to('/rooms');
|
||||
context.go('/rooms');
|
||||
}
|
||||
// Pangea#
|
||||
}
|
||||
|
|
|
|||
|
|
@ -167,7 +167,7 @@ class _SpaceViewState extends State<SpaceView> {
|
|||
future: () async {
|
||||
await room!.leave();
|
||||
if (Matrix.of(context).activeRoomId == room.id) {
|
||||
VRouter.of(context).to('/rooms');
|
||||
context.go('/rooms');
|
||||
}
|
||||
},
|
||||
// Pangea#
|
||||
|
|
|
|||
|
|
@ -106,17 +106,17 @@ class ChatSettingsPopupMenuState extends State<ChatSettingsPopupMenu> {
|
|||
// ],
|
||||
// ),
|
||||
// ),
|
||||
// PopupMenuItem<String>(
|
||||
// value: 'todos',
|
||||
// child: Row(
|
||||
// children: [
|
||||
// const Icon(Icons.task_alt_outlined),
|
||||
// const SizedBox(width: 12),
|
||||
// Text(L10n.of(context)!.todoLists),
|
||||
// ],
|
||||
// ),
|
||||
// ),
|
||||
// Pangea#
|
||||
PopupMenuItem<String>(
|
||||
value: 'todos',
|
||||
child: Row(
|
||||
children: [
|
||||
const Icon(Icons.task_alt_outlined),
|
||||
const SizedBox(width: 12),
|
||||
Text(L10n.of(context)!.todoLists),
|
||||
],
|
||||
),
|
||||
),
|
||||
PopupMenuItem<String>(
|
||||
value: 'leave',
|
||||
child: Row(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue