Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
@if (loggedIn) {
<h2>LOGGED IN SUCCESSFULLY!</h2>
<p>Please return to the desktop application...</p>
<button mat-stroked-button color="primary" (click)="window.close()">
Close
</button>
} @else if (loading) {
<app-loading-icon fontSize="24px" height="35px" width="35px">Logging in</app-loading-icon>
} @else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,5 @@ export class LoginLandingDesktopComponent implements OnInit {
}

protected readonly JSON = JSON;
protected readonly window = window;
}