update front

This commit is contained in:
2025-07-08 11:46:36 +07:00
parent c897e65ccc
commit 8656a9348f

View File

@@ -240,12 +240,6 @@ const BacktestTable: React.FC<BacktestTableProps> = ({list, isFetching}) => {
disableFilters: true,
disableSortBy: true,
},
{
Filter: SelectColumnFilter,
Header: 'BotType',
accessor: 'config.botType',
disableSortBy: true,
},
],
},
{
@@ -260,6 +254,12 @@ const BacktestTable: React.FC<BacktestTableProps> = ({list, isFetching}) => {
disableFilters: true,
sortType: 'basic',
},
{
Cell: ({cell}: any) => <>{cell.row.values.winRate} %</>,
Header: 'Winrate',
accessor: 'winRate',
disableFilters: true,
},
{
Cell: ({cell}: any) => (
<>{cell.row.values.hodlPercentage.toFixed(2)} %</>
@@ -269,12 +269,6 @@ const BacktestTable: React.FC<BacktestTableProps> = ({list, isFetching}) => {
disableFilters: true,
sortType: 'basic',
},
{
Cell: ({cell}: any) => <>{cell.row.values.winRate} %</>,
Header: 'Winrate',
accessor: 'winRate',
disableFilters: true,
},
{
Cell: ({cell}: any) => (
<>{cell.row.values.growthPercentage.toFixed(2)} %</>