From 0c6bea26f82cd3a5c6c9e3e6e49af618bdc862ac Mon Sep 17 00:00:00 2001 From: yqni13 Date: Sun, 30 Jun 2024 14:02:52 +0200 Subject: [PATCH] build test fix: added title property --- src/app/app.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 776ba0d..b2df8eb 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -17,12 +17,14 @@ export class AppComponent implements OnInit { private mobileNavExpended = false; private collapseNavbarWidth = 768; + title: string; constructor(private router: Router) { router.events.subscribe(e => { if(e instanceof NavigationStart) window.scrollTo(0,0) }) + this.title = 'portfolio'; } ngOnInit() {