Skip to content

Commit

Permalink
[bug] fix plugin data export
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyLuzyanin authored and catbasilio committed Jun 9, 2023
1 parent 7a6b1bd commit e08523f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion word/api_plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,8 @@
var arrIds = [];
for(var nIdx = 0; nIdx < arrObjects.length; ++nIdx)
{
arrIds.push(arrObjects[nIdx].InternalId);
let oOleObject = arrObjects[nIdx];
arrIds.push(oOleObject["InternalId"]);
}
this.WordControl.m_oLogicDocument.RemoveDrawingObjects(arrIds);
};
Expand Down

0 comments on commit e08523f

Please sign in to comment.