ui fixes
This commit is contained in:
parent
d50d623f53
commit
4f8619faec
3 changed files with 4 additions and 2 deletions
Binary file not shown.
|
Before Width: | Height: | Size: 146 KiB After Width: | Height: | Size: 3.2 MiB |
|
|
@ -478,7 +478,9 @@ class _SpaceViewState extends State<SpaceView> {
|
|||
),
|
||||
// #Pangea
|
||||
// onTap: () => _onJoinSpaceChild(spaceChild),
|
||||
onTap: () => context.go('/spaces/${spaceChild.roomId}'),
|
||||
onTap: () => context.push(
|
||||
'/spaces/${spaceChild.roomId}',
|
||||
),
|
||||
// Pangea#
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -215,7 +215,7 @@ class NewSpaceController extends State<NewSpace> {
|
|||
.setActiveSpaceIdInChatListController(roomID.result!);
|
||||
|
||||
if (roomID.error == null) {
|
||||
context.go('/spaces/${roomID.result!}');
|
||||
context.push('/spaces/${roomID.result!}');
|
||||
}
|
||||
// if (roomID.error == null) {
|
||||
// context.go('/rooms/${roomID.result!}');
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue