Merge branch 'PR' into develop

pull/103/MERGE
13621160019@163.com 2021-12-27 23:08:25 +08:00
commit 0f17f7483d
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>
);