From c0bd2011f9a5a2925c6a055a6a754bd3e9d35a10 Mon Sep 17 00:00:00 2001 From: UnchartedBull Date: Wed, 22 Jan 2020 20:20:59 +0100 Subject: [PATCH 1/2] remove member-access --- tsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 376ee474a..ffaa0c5ea 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,7 +16,6 @@ ], "types": [], "lib": ["es2018", "dom"], - "esModuleInterop": true, - "member-access": true + "esModuleInterop": true } } From 5230e6ddb8dfa9e67fec0e76af8bb510451904d9 Mon Sep 17 00:00:00 2001 From: UnchartedBull Date: Wed, 22 Jan 2020 20:29:49 +0100 Subject: [PATCH 2/2] fix build error --- src/app/config/no-config/no-config.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/config/no-config/no-config.component.ts b/src/app/config/no-config/no-config.component.ts index aa5acd9a7..ffd7dfcb8 100644 --- a/src/app/config/no-config/no-config.component.ts +++ b/src/app/config/no-config/no-config.component.ts @@ -9,8 +9,8 @@ import { Router } from '@angular/router'; styleUrls: ['./no-config.component.scss'] }) export class NoConfigComponent implements OnInit { - private page = 0; - private totalPages = 4; + public page = 0; + public totalPages = 4; private configUpdate: boolean; public config: Config;