Skip to content

Commit

Permalink
fix: [M3-7259] - Fix inconsistent display of % in Linode Details MNTP…
Browse files Browse the repository at this point in the history
… legend (#9780)

* Fix legend label

* Add changeset
  • Loading branch information
mjac0bs authored Oct 10, 2023
1 parent 7670909 commit 10996a2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions packages/manager/.changeset/pr-9780-fixed-1696969213915.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Fixed
---

Inconsistent display of % in Linode Details MNTP legend ([#9780](https://github.com/linode/manager/pull/9780))
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ export const TransferContent = (props: ContentProps) => {
? `${regionName} Transfer Used (${totalUsedInGB} GB - ${Math.ceil(
totalUsagePercent
)}%)`
: `Global Pool Used (${totalUsedInGB} GB) - ${Math.ceil(
: `Global Pool Used (${totalUsedInGB} GB - ${Math.ceil(
totalUsagePercent
)}%`}
)}%)`}
</span>
</StyledPoolUsage>
<StyledRemainingPoolUsage>
Expand Down

0 comments on commit 10996a2

Please sign in to comment.