Browse Source

Delete useless code

Signed-off-by: tumao <yan.wang@zilliz.com>
tumao 3 years ago
parent
commit
1609a6265f
1 changed files with 2 additions and 4 deletions
  1. 2 4
      client/src/pages/schema/SizingInfo.tsx

+ 2 - 4
client/src/pages/schema/SizingInfo.tsx

@@ -34,8 +34,6 @@ const useStyles = makeStyles((theme: Theme) => ({
       marginRight: theme.spacing(2),
       color: theme.palette.milvusGrey.dark,
     },
-
-    '& .value': {},
   },
 }));
 
@@ -59,11 +57,11 @@ const SizingInfo: FC<SizingInfoParam> = props => {
         <div className={classes.info}>
           <div className={classes.pair}>
             <Typography className="key">{commonTrans('memory')}</Typography>
-            <Typography className="value">{info.memory}</Typography>
+            <Typography>{info.memory}</Typography>
           </div>
           <div className={classes.pair}>
             <Typography className="key">{commonTrans('disk')}</Typography>
-            <Typography className="value">{info.disk}</Typography>
+            <Typography>{info.disk}</Typography>
           </div>
         </div>
       </section>