mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
Fix mobile book amount tooltip
This commit is contained in:
parent
fb404165cb
commit
dd38551ce0
@ -319,7 +319,11 @@ class BookPage extends Component {
|
|||||||
width: 84,
|
width: 84,
|
||||||
renderCell: (params) => {
|
renderCell: (params) => {
|
||||||
return (
|
return (
|
||||||
<Tooltip placement='right' enterTouchDelay={0} title={t(params.row.type)}>
|
<Tooltip
|
||||||
|
placement='right'
|
||||||
|
enterTouchDelay={0}
|
||||||
|
title={t(params.row.type ? 'Seller' : 'Buyer')}
|
||||||
|
>
|
||||||
<div style={{ cursor: 'pointer' }}>
|
<div style={{ cursor: 'pointer' }}>
|
||||||
{amountToString(
|
{amountToString(
|
||||||
params.row.amount,
|
params.row.amount,
|
||||||
|
Loading…
Reference in New Issue
Block a user