We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f61f09f commit fd64265Copy full SHA for fd64265
frontend/src/app/applications/links/services/links.service.ts
@@ -96,9 +96,9 @@ export class LinksService {
96
this.http.get<LoginResponseDto>(`${API_PUBLIC_LINK_ACCESS}/${uuid}`).subscribe((r) => {
97
this.authService.initUserFromResponse(r)
98
if (link.space) {
99
- this.router.navigate([SPACES_PATH.SPACES], { queryParams: { select: link.space.name } }).catch(console.error)
+ this.router.navigate([SPACES_PATH.SPACES, link.space.alias]).catch(console.error)
100
} else {
101
- this.router.navigate([SPACES_PATH.SPACES_SHARES], { queryParams: { select: link.share.name } }).catch(console.error)
+ this.router.navigate([SPACES_PATH.SPACES_SHARES, link.share.alias]).catch(console.error)
102
}
103
})
104
0 commit comments