Skip to content

Commit

Permalink
fix: 修改点击间隔
Browse files Browse the repository at this point in the history
  • Loading branch information
enncy committed Apr 4, 2022
1 parent 0ab0a1f commit 176d83e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/core/worker/question.resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export function defaultQuestionResolve<E>(
/** 延长点击时间,避免一次点击全部 */
setTimeout(() => {
handler("multiple", targetAnswers[index][i], targetOptions[index][i], ctx);
}, 200 * i);
}, 500 * i);
});

return { finish: true, targetOptions, targetAnswers };
Expand Down

0 comments on commit 176d83e

Please sign in to comment.