solved I4ENPR

pull/104/head
Caozhenhui 2021-12-27 17:04:40 +08:00
parent da14bd2376
commit 1158bc841f
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ const SharePieItem = ({ color, name, value, totalShare }) => (
<Dot style={{ backgroundColor: color }} />
<span className="font-weight-semi-bold">{name}</span>
</Flex>
<div className="d-xxl-none">{((value * 100) / totalShare).toFixed(2)}%</div>
<div className="d-xxl-flex">{((value * 100) / totalShare).toFixed(2)}%</div>
</Flex>
);