|
@@ -30,7 +30,11 @@ export async function fetchFolderFileList(folderId, userId, commonFolderId) { |
|
|
obj.isShowFile = true; |
|
|
obj.isShowFile = true; |
|
|
return obj; |
|
|
return obj; |
|
|
}), |
|
|
}), |
|
|
workFile: (data.workFile || []).map(firstCharToLowerCase), |
|
|
|
|
|
|
|
|
workFile: (data.workFile || []).map(f => { |
|
|
|
|
|
const obj = firstCharToLowerCase(f); |
|
|
|
|
|
obj.isShowFile = true; |
|
|
|
|
|
return obj; |
|
|
|
|
|
}), |
|
|
coordinationFiles: (data.coordinationFiles || []).map(firstCharToLowerCase), |
|
|
coordinationFiles: (data.coordinationFiles || []).map(firstCharToLowerCase), |
|
|
public: (data.public || []).map(firstCharToLowerCase), |
|
|
public: (data.public || []).map(firstCharToLowerCase), |
|
|
} |
|
|
} |
|
|