]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+about/about.component.ts
Playlist miniature consistent font size
[github/Chocobozzz/PeerTube.git] / client / src / app / +about / about.component.ts
... / ...
CommitLineData
1import { Component } from '@angular/core'
2import { ScreenService } from '@app/core'
3
4@Component({
5 selector: 'my-about',
6 templateUrl: './about.component.html'
7})
8
9export class AboutComponent {
10 constructor (
11 private screenService: ScreenService
12 ) { }
13
14 get isBroadcastMessageDisplayed () {
15 return this.screenService.isBroadcastMessageDisplayed
16 }
17}