aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/about/about.component.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-02-20 16:13:05 +0100
committerChocobozzz <me@florianbigard.com>2018-02-20 16:13:55 +0100
commit07fa4c97ca50b83b0bee9230da97d02401b4e05f (patch)
tree07a5ef1b14d8f0596c241456e4cc772f38c0e4ba /client/src/app/about/about.component.ts
parentdddf58c8ce58f6cdd4b8ba93690cceae8f52c37d (diff)
downloadPeerTube-07fa4c97ca50b83b0bee9230da97d02401b4e05f.tar.gz
PeerTube-07fa4c97ca50b83b0bee9230da97d02401b4e05f.tar.zst
PeerTube-07fa4c97ca50b83b0bee9230da97d02401b4e05f.zip
Add support to video support on client
Diffstat (limited to 'client/src/app/about/about.component.ts')
-rw-r--r--client/src/app/about/about.component.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/about/about.component.ts b/client/src/app/about/about.component.ts
index 6a2e59be1..adad32b26 100644
--- a/client/src/app/about/about.component.ts
+++ b/client/src/app/about/about.component.ts
@@ -27,8 +27,8 @@ export class AboutComponent implements OnInit {
27 this.serverService.getAbout() 27 this.serverService.getAbout()
28 .subscribe( 28 .subscribe(
29 res => { 29 res => {
30 this.descriptionHTML = this.markdownService.markdownToHTML(res.instance.description) 30 this.descriptionHTML = this.markdownService.textMarkdownToHTML(res.instance.description)
31 this.termsHTML = this.markdownService.markdownToHTML(res.instance.terms) 31 this.termsHTML = this.markdownService.textMarkdownToHTML(res.instance.terms)
32 }, 32 },
33 33
34 err => this.notificationsService.error('Error', err) 34 err => this.notificationsService.error('Error', err)