Commit e0b02522 by CalciumIon

fix: 日志详情非消费类型显示错误

parent 58d9c294
......@@ -367,7 +367,7 @@ const LogsTable = () => {
dataIndex: 'content',
render: (text, record, index) => {
let other = getLogOther(record.other);
if (other == null) {
if (other == null || record.type !== 2) {
return (
<Paragraph
ellipsis={{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment