fix: on click space nav item use context.push to refresh course settings page (#4462)
This commit is contained in:
parent
549704d6ae
commit
8377a2d27e
1 changed files with 3 additions and 1 deletions
|
|
@ -50,7 +50,9 @@ void chatListHandleSpaceTap(
|
|||
Room space,
|
||||
) {
|
||||
void setActiveSpaceAndCloseChat() {
|
||||
context.go("/rooms/spaces/${space.id}/details");
|
||||
// push to refresh space details
|
||||
// https://github.com/pangeachat/client/issues/4292#issuecomment-3426794043
|
||||
context.push("/rooms/spaces/${space.id}/details");
|
||||
}
|
||||
|
||||
void autoJoin(Room space) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue