mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 10:49:28 +02:00
Fix client lint
This commit is contained in:
parent
c186a67f90
commit
1378c0d343
102 changed files with 1053 additions and 1031 deletions
|
@ -36,8 +36,8 @@ export class InstanceAboutAccordionComponent implements OnInit {
|
|||
|
||||
ngOnInit (): void {
|
||||
this.instanceService.getAbout()
|
||||
.subscribe(
|
||||
async about => {
|
||||
.subscribe({
|
||||
next: async about => {
|
||||
this.about = about
|
||||
|
||||
this.aboutHtml = await this.instanceService.buildHtml(about)
|
||||
|
@ -45,8 +45,8 @@ export class InstanceAboutAccordionComponent implements OnInit {
|
|||
this.init.emit(this)
|
||||
},
|
||||
|
||||
err => this.notifier.error(err.message)
|
||||
)
|
||||
error: err => this.notifier.error(err.message)
|
||||
})
|
||||
}
|
||||
|
||||
getAdministratorsPanel () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue