1
0
Fork 0
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:
Chocobozzz 2021-08-17 11:27:47 +02:00
parent c186a67f90
commit 1378c0d343
No known key found for this signature in database
GPG key ID: 583A612D890159BE
102 changed files with 1053 additions and 1031 deletions

View file

@ -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 () {