minor bug fix

This commit is contained in:
Samuel Philipp 2021-01-10 18:26:10 +01:00
parent ec6ae661b8
commit 4cdec767b6
2 changed files with 1 additions and 22 deletions

View File

@ -2,12 +2,6 @@
"authToken": "test",
"title": "sp-status",
"description": "Services hosted by sp-codes",
"translations": {
"de": {
"title": "sp-status",
"description": "Services von sp-codes bereitgestellt"
}
},
"servicesPath": "$.alerts.*",
"idPath": "$.labels.status_service",
"statePath": "$.status",
@ -26,21 +20,6 @@
"name": "My Service",
"url": "http://sp-codes.de",
"statePath": "$.state"
}, {
"id": "test3",
"name": "Test3",
"statePath": "$.state"
}
]
}, {
"id": "group2",
"name": "Group2",
"services": [
{
"id": "test2",
"name": "Test2",
"url": "http://sp-codes.de",
"statePath": "$.state"
}
]
}

View File

@ -38,7 +38,7 @@ export class AppComponent implements OnInit {
this.api.getMetaInfo().subscribe(info => {
this.title = info.title;
this.description = info.description;
this.translations = info.translations;
this.translations = info.translations || {};
this.htmlTitle.setTitle(this.title);
});
}