dify/web/app/components/base/mermaid/utils.ts

4 lines
105 B
TypeScript

export function cleanUpSvgCode(svgCode: string): string {
return svgCode.replaceAll('<br>', '<br/>')
}