Render JSON files as text files

This commit is contained in:
2023-06-08 14:18:12 +02:00
parent 008ffbc4f7
commit f46c4e703d
2 changed files with 2 additions and 0 deletions

View File

@@ -60,6 +60,7 @@ export const file_type = file => {
) {
return "pdf"
} else if (
file.mime_type === "application/json" ||
file.mime_type.startsWith("text")
) {
return "text"

View File

@@ -47,6 +47,7 @@ export const fs_node_type = node => {
) {
return "pdf"
} else if (
node.file_type === "application/json" ||
node.file_type.startsWith("text")
) {
return "text"