From 181cb1305c807d360ce7df222d118a6f959a8979 Mon Sep 17 00:00:00 2001 From: Apoorv Taneja Date: Wed, 28 Oct 2020 16:30:34 +0530 Subject: [PATCH] fixed progress bar --- client/modules/IDE/components/AssetSize.jsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/client/modules/IDE/components/AssetSize.jsx b/client/modules/IDE/components/AssetSize.jsx index cf2356e229..50764dd40a 100644 --- a/client/modules/IDE/components/AssetSize.jsx +++ b/client/modules/IDE/components/AssetSize.jsx @@ -30,9 +30,11 @@ const AssetSize = ({ totalSize }) => { const percentSize = percentValue < 1 ? percentValue : 1; return ( -
-
-

{currentSize} ({percent})

+
+
+

+ {currentSize} ({percent}) +

Max: {sizeLimit}

);