From 47dc5db9c38d72666da5733a7a026976ec7dac04 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 17 Nov 2020 14:49:36 +0100 Subject: [PATCH] Fix client build --- client/src/app/shared/shared-main/misc/help.component.ts | 6 +++--- shared/core-utils/renderer/html.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/app/shared/shared-main/misc/help.component.ts b/client/src/app/shared/shared-main/misc/help.component.ts index 9647e05bd..76e255d99 100644 --- a/client/src/app/shared/shared-main/misc/help.component.ts +++ b/client/src/app/shared/shared-main/misc/help.component.ts @@ -1,6 +1,6 @@ import { AfterContentInit, Component, ContentChildren, Input, OnChanges, OnInit, QueryList, TemplateRef } from '@angular/core' -import { MarkdownService } from '@app/core' import { GlobalIconName } from '@app/shared/shared-icons' +import { ENHANCED_RULES, TEXT_RULES } from '@shared/core-utils/renderer/markdown' import { PeerTubeTemplateDirective } from '../angular' @Component({ @@ -60,12 +60,12 @@ export class HelpComponent implements OnInit, OnChanges, AfterContentInit { private init () { if (this.helpType === 'markdownText') { - this.mainHtml = this.formatMarkdownSupport(MarkdownService.TEXT_RULES) + this.mainHtml = this.formatMarkdownSupport(TEXT_RULES) return } if (this.helpType === 'markdownEnhanced') { - this.mainHtml = this.formatMarkdownSupport(MarkdownService.ENHANCED_RULES) + this.mainHtml = this.formatMarkdownSupport(ENHANCED_RULES) return } } diff --git a/shared/core-utils/renderer/html.ts b/shared/core-utils/renderer/html.ts index 37ae5147c..1220848a0 100644 --- a/shared/core-utils/renderer/html.ts +++ b/shared/core-utils/renderer/html.ts @@ -5,7 +5,7 @@ export const SANITIZE_OPTIONS = { a: [ 'href', 'class', 'target', 'rel' ] }, transformTags: { - a: (tagName, attribs) => { + a: (tagName: string, attribs: any) => { let rel = 'noopener noreferrer' if (attribs.rel === 'me') rel += ' me' -- 2.41.0