We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b98dcca commit c3fc84dCopy full SHA for c3fc84d
fiduswriter/pandoc/static/js/modules/pandoc/helpers.js
@@ -14,7 +14,7 @@ export const flattenDirectory = rootMap => {
14
for (const [key, value] of currentMap) {
15
if (value instanceof Map) {
16
processMap(value, `${currentPath}${key}/`)
17
- } else if (value instanceof Blob) {
+ } else {
18
result[`${currentPath}${key}`] = value
19
}
20
@@ -24,7 +24,7 @@ export const flattenDirectory = rootMap => {
24
for (const [key, value] of rootMap) {
25
26
processMap(value, `./${key}/`)
27
28
result[`./${key}`] = value
29
30
0 commit comments