Update Angular

+ Add a config file to use Docker
This commit is contained in:
Sébastien André
2021-02-15 15:20:52 +01:00
parent 54781e2444
commit b8a32bc01e
8 changed files with 2951 additions and 1692 deletions

View File

@@ -26,7 +26,13 @@ export class AppComponent implements OnInit {
this.authenticationService.currentUser.subscribe(
x => (this.currentUser = x)
);
//this.version = ConfigurationHelper.settings.version;
ConfigurationHelper.settings.subscribe(settings =>
{
if (settings != null) {
this.version = settings.version;
}
});
}
ngOnInit() {