diff --git a/@overflow/model/ping/result.ts b/@overflow/model/ping/result.ts index e104a7f..51cf7e6 100644 --- a/@overflow/model/ping/result.ts +++ b/@overflow/model/ping/result.ts @@ -4,4 +4,5 @@ import { PingSummary } from './summary'; export interface PingResult { responses: Map; summary: PingSummary; + raw?: string[]; } diff --git a/src/app/app.component.html b/src/app/app.component.html index 925d7b2..0e25a29 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,3 +1,5 @@ + +
diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 2c9420b..9a95840 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -15,6 +15,7 @@ import { MenuEvent } from '../commons/type'; export class AppComponent implements OnInit, OnDestroy { title = 'scanner-app'; showTitleBar: boolean; + block: boolean; menuSubscription: Subscription; displayAbout: boolean; @@ -25,10 +26,10 @@ export class AppComponent implements OnInit, OnDestroy { public constructor( private changeDetector: ChangeDetectorRef, private electronProxyService: ElectronProxyService, - private probeService: ProbeService, ) { // this.showTitleBar = !__LINUX__; this.showTitleBar = false; + this.block = false; } ngOnInit(): void { diff --git a/src/app/pages/home/home-page.component.html b/src/app/pages/home/home-page.component.html index 7a3fd5f..36e86bf 100644 --- a/src/app/pages/home/home-page.component.html +++ b/src/app/pages/home/home-page.component.html @@ -95,6 +95,12 @@ + + + + +