From eab4d3cc57c0eff9639c1c4b5aa07b1db90e0a31 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Thu, 29 Mar 2018 13:17:51 +0300 Subject: [PATCH] fix(client) goToParentDir --- client/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client.js b/client/client.js index fc4bab9f..6422203c 100644 --- a/client/client.js +++ b/client/client.js @@ -584,7 +584,7 @@ function CloudCmdProto(Util, DOM) { if (dirPath === parentDirPath) return; - const path = Info.dirPath || parentDirPath; + const path = parentDirPath; CloudCmd.loadDir({path}, () => { const {panel} = Info;