Commit e0b02522 by CalciumIon

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

parent 58d9c294
...@@ -367,7 +367,7 @@ const LogsTable = () => { ...@@ -367,7 +367,7 @@ const LogsTable = () => {
dataIndex: 'content', dataIndex: 'content',
render: (text, record, index) => { render: (text, record, index) => {
let other = getLogOther(record.other); let other = getLogOther(record.other);
if (other == null) { if (other == null || record.type !== 2) {
return ( return (
<Paragraph <Paragraph
ellipsis={{ 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