Fix lint errors in portal (#16799)

This PR fixes all lint errors reported by TSLint (`npm run lint` in `src/portal/`).

TSLint also reports multiple warnings (see #16798), but this PR doesn't fix any of them.

Signed-off-by: Simon Alling <alling.simon@gmail.com>
This commit is contained in:
Simon Alling 2022-05-05 07:48:09 +02:00 committed by GitHub
parent bb007f70bb
commit 16f38bc591
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 9 additions and 9 deletions

View File

@ -13,7 +13,7 @@
// limitations under the License.
import { NgModule } from "@angular/core";
import { SharedModule } from "../../../shared/shared.module";;
import { SharedModule } from "../../../shared/shared.module";
import { RouterModule, Routes } from "@angular/router";
import { LabelsComponent } from "./labels.component";

View File

@ -27,7 +27,7 @@ import { InlineAlertComponent } from "../../shared/components/inline-alert/inlin
export class PasswordSettingComponent implements AfterViewChecked {
showOldPwd: boolean = false;
showNewPwd: boolean = false;
showReNewPwd: boolean =false;
showReNewPwd: boolean = false;
opened: boolean = false;
oldPwd: string = "";
newPwd: string = "";

View File

@ -11,7 +11,7 @@ describe('ChartDetailValueComponent', () => {
let component: ChartDetailValueComponent;
let fixture: ComponentFixture<ChartDetailValueComponent>;
beforeEach(async ()=> {
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [
TranslateModule.forRoot(),

View File

@ -177,9 +177,9 @@ export class HelmChartDefaultService extends HelmChartService {
responseType: 'blob',
})
.pipe(map(response => {
let parts = filename.split('/')
let parts = filename.split('/');
return {
filename: parts[parts.length-1],
filename: parts[parts.length - 1],
data: response
};
}))

View File

@ -14,7 +14,7 @@ describe('ListChartsComponent', () => {
}
};
beforeEach(()=> {
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [ListChartsComponent],
imports: [

View File

@ -150,5 +150,5 @@ describe('ProjectPolicyConfigComponent', () => {
})
class TestHostComponent {
@ViewChild(ProjectPolicyConfigComponent)
projectPolicyConfigComponent: ProjectPolicyConfigComponent
projectPolicyConfigComponent: ProjectPolicyConfigComponent;
}

View File

@ -15,7 +15,7 @@ describe('PushImageButtonComponent (inline template)', () => {
imports: [
SharedTestingModule
],
declarations: [InlineAlertComponent, CopyInputComponent, PushImageButtonComponent,TestHostComponent],
declarations: [InlineAlertComponent, CopyInputComponent, PushImageButtonComponent, TestHostComponent],
providers: [
ErrorHandler
]

View File

@ -27,7 +27,7 @@ export function portValidator(): ValidatorFn {
if (!regExp.test(value)) {
return { 'port': 65535 };
} else {
const portV = Number.parseInt(value);
const portV = Number.parseInt(value, 10);
if (portV <= 0 || portV > 65535) {
return { 'port': 65535 };
}