Skip to content

Commit

Permalink
Fixed selection download bug
Browse files Browse the repository at this point in the history
Signed-off-by: ArvinHuang <[email protected]>
  • Loading branch information
idwenwen committed Aug 29, 2022
1 parent be0c73d commit 2d7eeda
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const dataRequest = {
deleted.push(implying)
} else {
for (const key in item) {
const title = _header.find(val => val.prop === key)
const title = _header.find ? _header.find(val => val.prop === key) : {}
if (item[key] &&
item[key].match &&
item[key].match(val[ORIGIN]) &&
Expand Down

0 comments on commit 2d7eeda

Please sign in to comment.