You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: portal-ui/src/screens/Console/Buckets/ListBuckets/Objects/ListObjects/CreatePathModal.tsx
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,7 @@ interface ICreatePath {
38
38
folderName: string;
39
39
onClose: ()=>any;
40
40
simplePath: string|null;
41
+
limitedSubPath?: boolean;
41
42
}
42
43
43
44
constCreatePathModal=({
@@ -46,6 +47,7 @@ const CreatePathModal = ({
46
47
bucketName,
47
48
onClose,
48
49
simplePath,
50
+
limitedSubPath,
49
51
}: ICreatePath)=>{
50
52
constdispatch=useAppDispatch();
51
53
constnavigate=useNavigate();
@@ -158,6 +160,11 @@ const CreatePathModal = ({
158
160
onChange={inputChange}
159
161
onKeyPress={keyPressed}
160
162
required
163
+
tooltip={
164
+
(limitedSubPath&&
165
+
"You may only have write access on a limited set of subpaths within this path. Please carefully review your User permissions to understand the paths to which you may write.")||
0 commit comments