From d4ff2d9480f4e53e2f00a3eb189bed2d1fe07df5 Mon Sep 17 00:00:00 2001 From: Djeeberjr Date: Tue, 28 Sep 2021 18:41:04 +0200 Subject: [PATCH] fixed create dir --- src/components/FileBrowser.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/FileBrowser.tsx b/src/components/FileBrowser.tsx index 36e210b..b2382ca 100644 --- a/src/components/FileBrowser.tsx +++ b/src/components/FileBrowser.tsx @@ -114,7 +114,7 @@ const FileBrowser: React.FC = (props) => {
{ - const dirID = new ObjID(path.bucket,path.key + dirName) + const dirID = new ObjID(path.bucket,path.key + dirName + "/") await createDirMutation({variables:{path: dirID}}) refetchDir() }}