diff --git a/portal-ui/src/screens/Console/Buckets/BucketDetails/AddBucketTagModal.tsx b/portal-ui/src/screens/Console/Buckets/BucketDetails/AddBucketTagModal.tsx index 0088d8660..ba34d0cd3 100644 --- a/portal-ui/src/screens/Console/Buckets/BucketDetails/AddBucketTagModal.tsx +++ b/portal-ui/src/screens/Console/Buckets/BucketDetails/AddBucketTagModal.tsx @@ -15,8 +15,7 @@ // along with this program. If not, see . import React, { useState } from "react"; -import { AddNewTagIcon, Button } from "mds"; -import { Grid } from "@mui/material"; +import { AddNewTagIcon, Box, Button, FormLayout, Grid, InputBox } from "mds"; import { Theme } from "@mui/material/styles"; import createStyles from "@mui/styles/createStyles"; import withStyles from "@mui/styles/withStyles"; @@ -25,7 +24,6 @@ import { modalStyleUtils, spacingUtils, } from "../../Common/FormComponents/common/styleLibrary"; -import InputBoxWrapper from "../../Common/FormComponents/InputBoxWrapper/InputBoxWrapper"; import ModalWrapper from "../../Common/ModalWrapper/ModalWrapper"; import { setModalErrorSnackMessage } from "../../../../systemSlice"; import { useAppDispatch } from "../../../../store"; @@ -96,35 +94,31 @@ const AddBucketTagModal = ({ }} titleIcon={} > - -
+ + Bucket: {bucketName} -
- - { - setNewKey(e.target.value); - }} - /> - - - { - setNewLabel(e.target.value); - }} - /> - - + + { + setNewKey(e.target.value); + }} + /> + { + setNewLabel(e.target.value); + }} + /> +