Skip to content

Commit

Permalink
fix(script): 修复上个版本任务点检测不到的BUG
Browse files Browse the repository at this point in the history
  • Loading branch information
enncy committed May 24, 2024
1 parent 1a0b99d commit 8bf7551
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/scripts/src/projects/cx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1219,7 +1219,7 @@ function searchJob(

// 获取任务点数据
const attachment: Attachment | undefined = (knowCardWin.attachments as any[]).find(
(attachment) => attachment.jobid === JSON.parse(frame_data_str).jobid
(attachment) => String(attachment.jobid) === String(JSON.parse(frame_data_str).jobid)
);

// 任务点去重
Expand Down

0 comments on commit 8bf7551

Please sign in to comment.