latest adf alpha (#353)

* latest adf alpha

* fix test

* try using instant translation for page titles

* upgrade to latest alpha

* update app config

* upgrade to adf app config pipe

* update libs

* update libs

* update config file

* fix code after upgrade

* upgrade e2e

* upgrade libs

* update libs

* fix e2e
This commit is contained in:
Denys Vuika
2018-05-10 22:07:02 +01:00
committed by GitHub
parent 028722b1a9
commit 8a222bcb89
29 changed files with 2205 additions and 2353 deletions
+3 -4
View File
@@ -62,10 +62,9 @@ export class AppComponent implements OnInit {
const data: any = snapshot.data || {};
if (data.i18nTitle) {
this.translateService.translate
.stream(data.i18nTitle)
.subscribe((title) => pageTitle.setTitle(title));
pageTitle.setTitle(
this.translateService.instant(data.i18nTitle)
);
} else {
pageTitle.setTitle(data.title || '');
}