Skip to content
Snippets Groups Projects
Commit 09dbdee4 authored by Fadil's avatar Fadil Committed by bouhaddouzay
Browse files

[US TRTL-514] Fix identity units tests crash

parent 263143b3
No related branches found
No related tags found
No related merge requests found
...@@ -41,14 +41,18 @@ import { StartupService } from 'ui-frontend-common'; ...@@ -41,14 +41,18 @@ import { StartupService } from 'ui-frontend-common';
@Component({ @Component({
selector: 'app-root', selector: 'app-root',
templateUrl: './app.component.html', templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'], styleUrls: ['./app.component.scss']
}) })
export class AppComponent implements OnInit { export class AppComponent implements OnInit {
constructor(private titleService: Title, private startupService: StartupService) { } title = 'Identity App';
subrogating = false;
constructor(titleService: Title, startupService: StartupService) {
titleService.setTitle(startupService.getPlatformName());
}
ngOnInit() { ngOnInit() {
this.titleService.setTitle(this.startupService.getPlatformName());
} }
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment