Merge branch 'main' of github.com:ghostfolio/ghostfolio
All checks were successful
Docker image CD / build_and_push (push) Successful in 20m41s
All checks were successful
Docker image CD / build_and_push (push) Successful in 20m41s
This commit is contained in:
commit
d8dc02fc4a
@ -61,15 +61,18 @@ export class RegisterPageComponent implements OnDestroy, OnInit {
|
||||
public async onLoginWithInternetIdentity() {
|
||||
try {
|
||||
const { authToken } = await this.internetIdentityService.login();
|
||||
|
||||
this.tokenStorageService.saveToken(authToken);
|
||||
this.router.navigate(['/']);
|
||||
|
||||
await this.router.navigate(['/']);
|
||||
} catch {}
|
||||
}
|
||||
|
||||
public openShowAccessTokenDialog() {
|
||||
const dialogRef = this.dialog.open(ShowAccessTokenDialog, {
|
||||
disableClose: true,
|
||||
width: '30rem'
|
||||
height: this.deviceType === 'mobile' ? '98vh' : undefined,
|
||||
width: this.deviceType === 'mobile' ? '100vw' : '30rem'
|
||||
});
|
||||
|
||||
dialogRef
|
||||
|
Loading…
x
Reference in New Issue
Block a user