fix:review window 中energy和Abundance增加排序

This commit is contained in:
xiaoguangbin 2023-12-12 15:16:12 +08:00
parent 85eb54bc6c
commit d77247a262

View File

@ -125,6 +125,7 @@ const columns = [
title: 'Energy',
dataIndex: 'energy',
width: '15%',
sorter: (a, b) => a.energy - b.energy,
},
{
title: 'Energy Err',
@ -135,6 +136,7 @@ const columns = [
title: 'Abundance(%)',
dataIndex: 'yield',
width: '15%',
sorter: (a, b) => a.yield - b.yield,
},
{
title: 'Abundance Err(%)',