File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
portal-ui/src/screens/Console/Buckets/ListBuckets/Objects/ListObjects Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -65,18 +65,18 @@ const CreateFolderModal = ({
65
65
66
66
return (
67
67
< React . Fragment >
68
- < ModalWrapper modalOpen = { modalOpen } title = "Add Folder " onClose = { onClose } >
68
+ < ModalWrapper modalOpen = { modalOpen } title = "Choose or create a new path " onClose = { onClose } >
69
69
< Grid container >
70
70
< h3 className = { classes . pathLabel } >
71
71
Current Path: { folderTruncated } /
72
72
</ h3 >
73
73
< Grid item xs = { 12 } >
74
74
< InputBoxWrapper
75
75
value = { pathUrl }
76
- label = { "Folder Path" }
76
+ label = { "New Folder Path" }
77
77
id = { "folderPath" }
78
78
name = { "folderPath" }
79
- placeholder = { "Enter Folder Path" }
79
+ placeholder = { "Enter the new Folder Path" }
80
80
onChange = { ( e ) => {
81
81
setPathUrl ( e . target . value ) ;
82
82
} }
@@ -98,7 +98,7 @@ const CreateFolderModal = ({
98
98
disabled = { pathUrl . trim ( ) === "" }
99
99
onClick = { createProcess }
100
100
>
101
- Save
101
+ Go
102
102
</ Button >
103
103
</ Grid >
104
104
</ Grid >
Original file line number Diff line number Diff line change @@ -825,10 +825,10 @@ const ListObjects = ({
825
825
}
826
826
actions = {
827
827
< Fragment >
828
- < Tooltip title = { "Create Folder " } >
828
+ < Tooltip title = { "Choose or create a new path " } >
829
829
< IconButton
830
830
color = "primary"
831
- aria-label = "Create Folder "
831
+ aria-label = "Choose or create a new path "
832
832
component = "span"
833
833
onClick = { ( ) => {
834
834
setCreateFolderOpen ( true ) ;
You can’t perform that action at this time.
0 commit comments