diff --git a/ui/src/app/app.component.ts b/ui/src/app/app.component.ts index 9a8db0f..fa34f81 100644 --- a/ui/src/app/app.component.ts +++ b/ui/src/app/app.component.ts @@ -1,4 +1,5 @@ import { Component } from '@angular/core'; +import {Title} from '@angular/platform-browser'; @Component({ selector: 'app-root', @@ -6,4 +7,7 @@ import { Component } from '@angular/core'; styleUrls: ['./app.component.scss'] }) export class AppComponent { + constructor(private titleService: Title) { + titleService.setTitle('Podsync - Turn YouTube channels into podcast feeds'); + } }