Files
windmill/frontend/src/lib/components/toast.ts
T
2024-11-12 10:15:16 +01:00

9 lines
388 B
TypeScript

//regex that match path starting with u/ or f/ and with at least 2 /
const pathRegex = /\b(u|f)\/[^\/\s]+\/[^\/\s]+\b/g
export function processMessage(message: string | undefined): string {
return (message ?? 'Error without message').replaceAll(pathRegex, (path) => {
return `<span class="bg-surface-secondary p-1 text-xs font-mono whitespace-nowrap rounded-md">${path}</span>`
})
}