#841 Update opportunities confidence attribute (#921)

Co-authored-by: Jessica Li <jessicali@jessicas-air.lan>
This commit is contained in:
jessicali2023 2023-07-25 16:55:43 -07:00 committed by GitHub
parent 51cfc0d82c
commit c0700c9b20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,9 @@ const StyledContainer = styled.div`
`;
const StyledProgressBarItemContainer = styled.div`
align-items: center;
display: flex;
height: ${({ theme }) => theme.spacing(4)};
padding-right: ${({ theme }) => theme.spacing(1)};
`;
@ -56,7 +59,7 @@ type OwnProps = {
};
const PROBABILITY_VALUES = [
{ label: 'Lost', value: 0 },
{ label: '0%', value: 0 },
{ label: '25%', value: 25 },
{ label: '50%', value: 50 },
{ label: '75%', value: 75 },