]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/about/about.component.ts
Add support to video support on client
[github/Chocobozzz/PeerTube.git] / client / src / app / about / about.component.ts
index 6a2e59be18476b7762ddadffbdb30859e27cafff..adad32b263825ebd493b5fa9a0dac7b756c37b04 100644 (file)
@@ -27,8 +27,8 @@ export class AboutComponent implements OnInit {
     this.serverService.getAbout()
       .subscribe(
         res => {
-          this.descriptionHTML = this.markdownService.markdownToHTML(res.instance.description)
-          this.termsHTML = this.markdownService.markdownToHTML(res.instance.terms)
+          this.descriptionHTML = this.markdownService.textMarkdownToHTML(res.instance.description)
+          this.termsHTML = this.markdownService.textMarkdownToHTML(res.instance.terms)
         },
 
         err => this.notificationsService.error('Error', err)