diff options
Diffstat (limited to 'client/src/BidsPage.jsx')
-rw-r--r-- | client/src/BidsPage.jsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client/src/BidsPage.jsx b/client/src/BidsPage.jsx index c6392b5..3a40f41 100644 --- a/client/src/BidsPage.jsx +++ b/client/src/BidsPage.jsx @@ -38,6 +38,11 @@ const columns = [ const color = val >= 0 ? 'green' : 'red'; return <Typography.Text style={{ color }}>{val.toFixed(2)}</Typography.Text>; } + }, + { + title: 'Market', + dataIndex: 'market', + render: (val) => val, } ]; |