We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cab07a7 commit 81f6536Copy full SHA for 81f6536
src/utils/fileUtils.ts
@@ -94,9 +94,9 @@ const genFileInfo = function(obj: FileStat): FileInfo {
94
Object.keys(obj).forEach(key => {
95
const data = obj[key]
96
97
- // flatten object if any
+ // flatten object if any without overwriting type
98
if (!!data && typeof data === 'object' && !Array.isArray(data)) {
99
- Object.assign(fileInfo, genFileInfo(data))
+ Object.assign(fileInfo, genFileInfo(data), fileInfo["type"] ? { type: fileInfo["type"] } : {})
100
} else {
101
// format key and add it to the fileInfo
102
if (data === 'false') {
0 commit comments