mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-11 00:06:06 +00:00
14 lines
485 B
TypeScript
14 lines
485 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 {
|
|
let msg = !message
|
|
? 'Error without message'
|
|
: typeof message != 'string'
|
|
? JSON.stringify(message, null, 2)
|
|
: message
|
|
return msg.replaceAll(pathRegex, (path) => {
|
|
return `<span class="bg-surface-secondary p-1 text-xs font-mono whitespace-nowrap rounded-md">${path}</span>`
|
|
})
|
|
}
|