mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-29 17:45:12 +08:00
4 lines
105 B
TypeScript
4 lines
105 B
TypeScript
export function cleanUpSvgCode(svgCode: string): string {
|
|
return svgCode.replaceAll('<br>', '<br/>')
|
|
}
|