fix normalize path

pull/3094/head
yann300 7 years ago
parent 44b63a4dee
commit c6c639293d
  1. 3
      src/app/files/file-explorer.js

@ -173,10 +173,9 @@ function fileExplorer (appAPI, files) {
})
function normalize (path, filesList) {
var prefix = path.split('/')[0]
var newList = {}
Object.keys(filesList).forEach(key => {
newList[prefix + '/' + key] = filesList[key].isDirectory ? {} : { '/content': true }
newList[path + '/' + key] = filesList[key].isDirectory ? {} : { '/content': true }
})
return newList
}

Loading…
Cancel
Save