Skip to content

Commit aa5d654

Browse files
Merge pull request #4051 from Zacgoose/mailboxusage
Less ambiguous wording for mailbox usage
2 parents 8d277fc + 76502d9 commit aa5d654

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/CippCards/CippExchangeInfoCard.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export const CippExchangeInfoCard = (props) => {
8282
<LinearProgressWithLabel
8383
sx={{ width: "100%" }}
8484
variant="determinate"
85-
addedLabel={`(${Math.round(exchangeData.TotalItemSize)}/${Math.round(
85+
addedLabel={`(${Math.round(exchangeData.TotalItemSize)} GB of ${Math.round(
8686
exchangeData?.ProhibitSendReceiveQuota
8787
)}GB)`}
8888
value={

src/components/linearProgressWithLabel.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const LinearProgressWithLabel = (props) => {
66
<Box sx={{ width: "100%", mr: 1 }}>
77
<LinearProgress variant="determinate" {...props} />
88
</Box>
9-
<Box sx={{ minWidth: 100 }}>{`${Math.round(props.value)}% ${props?.addedLabel ?? ""}`}</Box>
9+
<Box sx={{ minWidth: 135 }}>{`${Math.round(props.value)}% ${props?.addedLabel ?? ""}`}</Box>
1010
</Box>
1111
);
1212
};

0 commit comments

Comments
 (0)