fix:review window 中energy和Abundance增加排序
This commit is contained in:
parent
85eb54bc6c
commit
d77247a262
|
@ -125,6 +125,7 @@ const columns = [
|
||||||
title: 'Energy',
|
title: 'Energy',
|
||||||
dataIndex: 'energy',
|
dataIndex: 'energy',
|
||||||
width: '15%',
|
width: '15%',
|
||||||
|
sorter: (a, b) => a.energy - b.energy,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Energy Err',
|
title: 'Energy Err',
|
||||||
|
@ -135,6 +136,7 @@ const columns = [
|
||||||
title: 'Abundance(%)',
|
title: 'Abundance(%)',
|
||||||
dataIndex: 'yield',
|
dataIndex: 'yield',
|
||||||
width: '15%',
|
width: '15%',
|
||||||
|
sorter: (a, b) => a.yield - b.yield,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Abundance Err(%)',
|
title: 'Abundance Err(%)',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user