mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-23 04:18:21 +00:00
fix spell (#5550)
This commit is contained in:
@@ -526,7 +526,7 @@ export const Utils = {
|
||||
|
||||
getFileOperationList: function(isRepoOwner, currentRepoInfo, dirent, isContextmenu) {
|
||||
let list = [];
|
||||
const { SHARE, DOWNLOAD, DELETE, RENAME, MOVE, COPY, TAGS, UNLOCK, LOCK, MASK_AS_DRAFT, UNMASK_AS_DRAFT,
|
||||
const { SHARE, DOWNLOAD, DELETE, RENAME, MOVE, COPY, TAGS, UNLOCK, LOCK, MARK_AS_DRAFT, UNMARK_AS_DRAFT,
|
||||
LIST_REVISIONS, COMMENT, HISTORY, ACCESS_LOG, OPEN_VIA_CLIENT, ONLYOFFICE_CONVERT } = TextTranslation;
|
||||
const permission = dirent.permission;
|
||||
const { isCustomPermission, customPermission } = Utils.getUserPermission(permission);
|
||||
@@ -596,9 +596,9 @@ export const Utils = {
|
||||
list.push('Divider');
|
||||
if (Utils.isSdocFile(dirent.name)) {
|
||||
if (dirent.is_sdoc_draft) {
|
||||
list.push(UNMASK_AS_DRAFT);
|
||||
list.push(UNMARK_AS_DRAFT);
|
||||
} else {
|
||||
list.push(MASK_AS_DRAFT);
|
||||
list.push(MARK_AS_DRAFT);
|
||||
}
|
||||
list.push(LIST_REVISIONS);
|
||||
}
|
||||
|
Reference in New Issue
Block a user