Files
plane/web/helpers/notification.helper.ts

9 lines
329 B
TypeScript
Raw Normal View History

import { stripAndTruncateHTML } from "./string.helper";
export const sanitizeCommentForNotification = (mentionContent: string | undefined) =>
mentionContent
? stripAndTruncateHTML(
mentionContent.replace(/<mention-component\b[^>]*\blabel="([^"]*)"[^>]*><\/mention-component>/g, "$1")
)
: mentionContent;