diff options
author | Chocobozzz <me@florianbigard.com> | 2019-12-06 13:57:57 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-12-06 13:57:57 +0100 |
commit | 7e049ea4673f05cbb90b37199bb93713cc0d5611 (patch) | |
tree | 78f3683c6296f0289691edd65f01980c587b7267 /client/src/app/+accounts | |
parent | d8232bac6abfb70953229a4164395f05cec90b35 (diff) | |
download | PeerTube-7e049ea4673f05cbb90b37199bb93713cc0d5611.tar.gz PeerTube-7e049ea4673f05cbb90b37199bb93713cc0d5611.tar.zst PeerTube-7e049ea4673f05cbb90b37199bb93713cc0d5611.zip |
Handle HTML in account descriptions
Diffstat (limited to 'client/src/app/+accounts')
-rw-r--r-- | client/src/app/+accounts/account-about/account-about.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/+accounts/account-about/account-about.component.ts b/client/src/app/+accounts/account-about/account-about.component.ts index ce22d3c2e..c65bad3f2 100644 --- a/client/src/app/+accounts/account-about/account-about.component.ts +++ b/client/src/app/+accounts/account-about/account-about.component.ts | |||
@@ -27,7 +27,7 @@ export class AccountAboutComponent implements OnInit, OnDestroy { | |||
27 | this.accountSub = this.accountService.accountLoaded | 27 | this.accountSub = this.accountService.accountLoaded |
28 | .subscribe(async account => { | 28 | .subscribe(async account => { |
29 | this.account = account | 29 | this.account = account |
30 | this.descriptionHTML = await this.markdownService.textMarkdownToHTML(this.account.description) | 30 | this.descriptionHTML = await this.markdownService.enhancedMarkdownToHTML(this.account.description, true) |
31 | }) | 31 | }) |
32 | } | 32 | } |
33 | 33 | ||