Skip to content

Commit

Permalink
fix: copy paste from excel results image not table (fix #1046)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyuwoo.choi committed Dec 27, 2017
1 parent 2214a92 commit 4aed691
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/importManager.js
Expand Up @@ -189,7 +189,7 @@ class ImportManager {
const blobItems = cbData && cbData.items;
const {types} = cbData;

if (blobItems && types && util.inArray('Files', [].slice.call(types)) !== -1) {
if (blobItems && types && types.length === 1 && util.inArray('Files', [].slice.call(types)) !== -1) {
this._processBlobItems(blobItems, evData);
}
}
Expand Down

0 comments on commit 4aed691

Please sign in to comment.