Card 的图片默认不转义

This commit is contained in:
2betop 2020-04-29 19:23:41 +08:00
parent 999ad773f4
commit 79b2d7f258
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ export class Card extends React.Component<CardProps> {
} = header;
const highlight = !!evalExpression(highlightTpl, data as object);
const avatar = filter(avatarTpl, data);
const avatar = filter(avatarTpl, data, '| raw');
const avatarText = filter(avatarTextTpl, data);
const title = filter(titleTpl, data);
const subTitle = filter(subTitleTpl, data);