diff --git a/ogWebconsole/src/app/components/global-status/global-status.component.ts b/ogWebconsole/src/app/components/global-status/global-status.component.ts index 9651a92..29c0a46 100644 --- a/ogWebconsole/src/app/components/global-status/global-status.component.ts +++ b/ogWebconsole/src/app/components/global-status/global-status.component.ts @@ -64,6 +64,9 @@ export class GlobalStatusComponent implements OnInit { } getServices(): { name: string, status: string }[] { + if (!this.ogBootServicesStatus) { + return []; + } return Object.keys(this.ogBootServicesStatus).map(key => ({ name: key, status: this.ogBootServicesStatus[key]