master
This commit is contained in:
parent
d607c2abcf
commit
49634c9285
|
|
@ -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]);
|
||||
|
|
|
|||
Loading…
Reference in New Issue