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({
DEFAULT: 0,
COMMON: "COMMON",
COMMON: 1,
BUNCH: 2,
TRASH: "TRASH",
USER: "USER",
SHARE: "SHARE",
TRASH: 3,
USER: 5,
SHARE: 6,
Projects: 8
});