diff options
Diffstat (limited to 'client/src/app/about')
-rw-r--r-- | client/src/app/about/about.component.ts | 4 |
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) |