Fixed Bug 60243 - Files.Info. Fixed display of file type

This commit is contained in:
Nikita Gopienko 2022-12-20 11:04:31 +03:00
parent 32e983ff38
commit 2915b4bba1

View File

@ -28,6 +28,8 @@ export const getFileTypeName = (fileType, t) => {
case FileType.Presentation:
return t("Files:Presentation");
case FileType.Document:
case FileType.OFormTemplate:
case FileType.OForm:
return t("Files:Document");
default:
return t("Files:Folder");