fix: bug#11192

This commit is contained in:
xieyonghong 2023-03-30 09:25:06 +08:00
parent e3c9884606
commit a3cb28ed5b
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ export const handleTimerOptions = (timer: OperationTimer):TimerOption => {
const whenStrArr = continuousValue(timer.when! || [], timer!.trigger);
const whenStrArr3 = whenStrArr.splice(0, 3);
when += whenStrArr3.join('、');
when += `${timer.when!.length}`;
when += `...${timer.when!.length}`;
}
if (timer.once) {