Web: Common: Fixed FolderType enum

This commit is contained in:
Ilya Oleshko 2020-06-05 15:08:32 +03:00
parent be6b6eb3ad
commit dce000f004

View File

@ -80,11 +80,11 @@ export const FileAction = Object.freeze({
*/ */
export const FolderType = Object.freeze({ export const FolderType = Object.freeze({
DEFAULT: 0, DEFAULT: 0,
COMMON: "COMMON", COMMON: 1,
BUNCH: 2, BUNCH: 2,
TRASH: "TRASH", TRASH: 3,
USER: "USER", USER: 5,
SHARE: "SHARE", SHARE: 6,
Projects: 8 Projects: 8
}); });