Skip to content

Commit 19e16d7

Browse files
committed
cleanup
1 parent 30c15fa commit 19e16d7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Frontend/src/app/app/app.component.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ export class AppComponent {
1919
protected header: boolean = true;
2020

2121
constructor(
22-
@Inject(PLATFORM_ID) private platformId: any,
22+
@Inject(PLATFORM_ID) platformId: any,
2323
meta: Meta,
24-
private activatedRoute: ActivatedRoute,
25-
private router: Router
24+
activatedRoute: ActivatedRoute,
25+
router: Router
2626
) {
27-
AppComponent.isBrowser = isPlatformBrowser(this.platformId);
27+
AppComponent.isBrowser = isPlatformBrowser(platformId);
2828
meta.addTag({ name: "author", content: "IPdotSetAF" });
2929

30-
this.router.events.pipe(
30+
router.events.pipe(
3131
filter(e => e instanceof NavigationEnd),
3232
map(() => activatedRoute),
3333
map(route => {

0 commit comments

Comments
 (0)