Changed labels in create folder modal / button (#958)

Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>

Co-authored-by: Benjamin Perez <benjamin@bexsoft.net>
This commit is contained in:
Alex
2021-08-17 16:52:15 -05:00
committed by GitHub
parent 2debb11f03
commit a09be99ae6
2 changed files with 6 additions and 6 deletions

View File

@@ -65,7 +65,7 @@ const CreateFolderModal = ({
return (
<React.Fragment>
<ModalWrapper modalOpen={modalOpen} title="Add Folder" onClose={onClose}>
<ModalWrapper modalOpen={modalOpen} title="Choose or create a new path" onClose={onClose}>
<Grid container>
<h3 className={classes.pathLabel}>
Current Path: {folderTruncated}/
@@ -73,10 +73,10 @@ const CreateFolderModal = ({
<Grid item xs={12}>
<InputBoxWrapper
value={pathUrl}
label={"Folder Path"}
label={"New Folder Path"}
id={"folderPath"}
name={"folderPath"}
placeholder={"Enter Folder Path"}
placeholder={"Enter the new Folder Path"}
onChange={(e) => {
setPathUrl(e.target.value);
}}
@@ -98,7 +98,7 @@ const CreateFolderModal = ({
disabled={pathUrl.trim() === ""}
onClick={createProcess}
>
Save
Go
</Button>
</Grid>
</Grid>

View File

@@ -825,10 +825,10 @@ const ListObjects = ({
}
actions={
<Fragment>
<Tooltip title={"Create Folder"}>
<Tooltip title={"Choose or create a new path"}>
<IconButton
color="primary"
aria-label="Create Folder"
aria-label="Choose or create a new path"
component="span"
onClick={() => {
setCreateFolderOpen(true);