Fix client build
This commit is contained in:
parent
45c70083dd
commit
47dc5db9c3
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
Loading…
Reference in a new issue