mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-14 01:02:57 -07:00
Fixed linting !wip
This commit is contained in:
parent
b6645c8b58
commit
70a3f2d02c
1 changed files with 2 additions and 1 deletions
|
@ -30,6 +30,7 @@ export class LoginComponent implements OnDestroy, OnInit {
|
||||||
public landingFlag: boolean;
|
public landingFlag: boolean;
|
||||||
public baseUrl: string;
|
public baseUrl: string;
|
||||||
public loginWithOmbi: boolean;
|
public loginWithOmbi: boolean;
|
||||||
|
public pinTimer: any;
|
||||||
|
|
||||||
public get appName(): string {
|
public get appName(): string {
|
||||||
if (this.customizationSettings.applicationName) {
|
if (this.customizationSettings.applicationName) {
|
||||||
|
@ -40,7 +41,6 @@ export class LoginComponent implements OnDestroy, OnInit {
|
||||||
}
|
}
|
||||||
|
|
||||||
private timer: any;
|
private timer: any;
|
||||||
private pinTimer: any;
|
|
||||||
private clientId: string;
|
private clientId: string;
|
||||||
|
|
||||||
private errorBody: string;
|
private errorBody: string;
|
||||||
|
@ -158,6 +158,7 @@ export class LoginComponent implements OnDestroy, OnInit {
|
||||||
|
|
||||||
public ngOnDestroy() {
|
public ngOnDestroy() {
|
||||||
clearInterval(this.timer);
|
clearInterval(this.timer);
|
||||||
|
clearInterval(this.pinTimer);
|
||||||
}
|
}
|
||||||
|
|
||||||
private cycleBackground() {
|
private cycleBackground() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue