процент линейного графика исправлен
This commit is contained in:
parent
38ab273404
commit
1db9e54458
@ -75,7 +75,7 @@ const FunnelItem = ({ title, percent, index, funnel }: FunnelItemProps) => {
|
|||||||
<Box sx={{ display: "flex", alignItems: "center", flexGrow: 1 }}>
|
<Box sx={{ display: "flex", alignItems: "center", flexGrow: 1 }}>
|
||||||
<LinearProgress
|
<LinearProgress
|
||||||
variant="determinate"
|
variant="determinate"
|
||||||
value={percent * 100 > 100 ? 100 : percent * 10}
|
value={percent * 100 > 100 ? 100 : percent * 100}
|
||||||
sx={{
|
sx={{
|
||||||
width: "100%",
|
width: "100%",
|
||||||
marginRight: "15px",
|
marginRight: "15px",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user