fix: 对 Detectability 值是Infinity的处理
This commit is contained in:
parent
6a3f99177b
commit
b7e4980297
|
@ -349,7 +349,7 @@ const columns = [
|
|||
dataIndex: 'significance',
|
||||
width: 120,
|
||||
customRender: (text) => {
|
||||
return text.toFixed(3)
|
||||
return text == 'Infinity' ? 'inf' : text.toFixed(3)
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue
Block a user