This commit is contained in:
lys 2025-07-14 14:47:27 +08:00
parent d607c2abcf
commit 49634c9285
1 changed files with 6 additions and 0 deletions

View File

@ -494,6 +494,12 @@ export function renderCols(initialState: any[], type: string, i18n?: AnyObject,
return col;
})
];
} else if (type === "cusTitle") {
return [
..._.map(initialState, (g) => {
return { ...g, title: <span dangerouslySetInnerHTML={{ __html: g.title }} /> };
})
];
}
return initialState;
}, [initialState, type, i18n, extraParams]);