Hide sort tooltip

This commit is contained in:
Nathaniel Parke 2020-10-15 19:17:16 +08:00
parent b48fe02510
commit 62e090aae9
1 changed files with 3 additions and 0 deletions

View File

@ -82,18 +82,21 @@ export default function OpenOrderTable({ openOrders, onCancelSuccess, pageSize,
return -1.
}
},
showSorterTooltip: false,
},
{
title: 'Size',
dataIndex: 'size',
key: 'size',
sorter: (a, b) => b.size - a.size,
showSorterTooltip: false,
},
{
title: 'Price',
dataIndex: 'price',
key: 'price',
sorter: (a, b) => b.price - a.price,
showSorterTooltip: false,
},
{
key: 'orderId',