From 19bea2f863dc5fd521fd9bde7ab1ad9a44b98dad Mon Sep 17 00:00:00 2001 From: Maksym Pavlenko Date: Sun, 2 Jun 2019 13:55:44 -0700 Subject: [PATCH] Fix title --- ui/src/app/app.component.ts | 4 ++++ 1 file changed, 4 insertions(+) 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'); + } }