Merge fix

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev 2025-02-17 11:06:11 +07:00
parent 329d1f175b
commit 0bfab71501
No known key found for this signature in database
GPG Key ID: BD80F68D68D8F7F2
2 changed files with 1 additions and 4 deletions

View File

@ -108,7 +108,6 @@ import {
getAllDocumentStates, getAllDocumentStates,
getControlledDocumentTitle, getControlledDocumentTitle,
getDocumentMetaLinkFragment, getDocumentMetaLinkFragment,
getDocumentMetaTitle,
getVisibleFilters, getVisibleFilters,
isFolder, isFolder,
renameFolder, renameFolder,
@ -457,7 +456,6 @@ export default async (): Promise<Resources> => ({
CanPrintDocument: canPrintDocument, CanPrintDocument: canPrintDocument,
DocumentIdentifierProvider: documentIdentifierProvider, DocumentIdentifierProvider: documentIdentifierProvider,
ControlledDocumentTitleProvider: getControlledDocumentTitle, ControlledDocumentTitleProvider: getControlledDocumentTitle,
DocumentMetaTitleProvider: getDocumentMetaTitle,
Comment: comment, Comment: comment,
IsCommentVisible: isCommentVisible IsCommentVisible: isCommentVisible
}, },

View File

@ -246,7 +246,6 @@ export default mergeIds(documentsId, documents, {
CanOpenDocument: '' as Resource<(doc?: Doc | Doc[]) => Promise<boolean>>, CanOpenDocument: '' as Resource<(doc?: Doc | Doc[]) => Promise<boolean>>,
CanPrintDocument: '' as Resource<(doc?: Doc | Doc[]) => Promise<boolean>>, CanPrintDocument: '' as Resource<(doc?: Doc | Doc[]) => Promise<boolean>>,
CanTransferDocument: '' as Resource<(doc?: Doc | Doc[]) => Promise<boolean>>, CanTransferDocument: '' as Resource<(doc?: Doc | Doc[]) => Promise<boolean>>,
ControlledDocumentTitleProvider: '' as Resource<(client: Client, ref: Ref<Doc>, doc?: Doc) => Promise<string>>, ControlledDocumentTitleProvider: '' as Resource<(client: Client, ref: Ref<Doc>, doc?: Doc) => Promise<string>>
DocumentMetaTitleProvider: '' as Resource<(client: Client, ref: Ref<Doc>, doc?: Doc) => Promise<string>>
} }
}) })