diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-27 21:03:25 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-27 21:03:25 -0600 |
commit | 623a03cc02b2e87a187aca29db5f3c787713fc74 (patch) | |
tree | 8fa5a48eb998822ff631739d6c0bb86796d46297 /client/src/BidsPage.jsx | |
parent | cc68bc880407d55837e02052c7ab098079641843 (diff) |
add market option
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, } ]; |