]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/buttons/delete-button.component.ts
Playlist reorder support
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / buttons / delete-button.component.ts
CommitLineData
ab998f7b 1import { Component, Input } from '@angular/core'
60709df5 2import { I18n } from '@ngx-translate/i18n-polyfill'
cd83ea1b
C
3
4@Component({
5 selector: 'my-delete-button',
6 styleUrls: [ './button.component.scss' ],
7 templateUrl: './delete-button.component.html'
8})
9
10export class DeleteButtonComponent {
eacb25c4 11 @Input() label: string
60709df5
C
12
13 constructor (private i18n: I18n) { }
14
15 getTitle () {
16 return this.label || this.i18n('Delete')
17 }
cd83ea1b 18}