Wen: Editor: Added a new parameter to the conversion api method.

This commit is contained in:
Tatiana Lopaeva 2022-01-21 15:07:32 +03:00
parent efe799d712
commit 893c4ddc5a

View File

@ -182,7 +182,7 @@ const Editor = () => {
};
const convertDocumentUrl = async () => {
const convert = await convertFile(fileId, true);
const convert = await convertFile(fileId, null, true);
return convert[0]?.result;
};