Compare commits

...

2 commits

Author SHA1 Message Date
031f8fa1c4 updated config
All checks were successful
continuous-integration/drone/push Build is passing
2021-01-10 18:26:26 +01:00
4cdec767b6 minor bug fix 2021-01-10 18:26:10 +01:00
2 changed files with 1 additions and 16 deletions

View file

@ -26,21 +26,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);
});
}