Merge branch 'develop'

pull/117/head
13621160019@163.com 2021-12-27 23:09:54 +08:00
commit fadf138f62
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>
);