Skip to content

Commit 215c5a8

Browse files
committed
feat: List trigger task
1 parent 68f3293 commit 215c5a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ui/src/views/trigger/component/TriggerDrawer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ const times = Array.from({ length: 24 }, (_, i) => {
353353
})
354354
const days = Array.from({ length: 31 }, (_, i) => {
355355
const t = i.toString() + ''
356-
return { label: t, value: i, children: times }
356+
return { label: t, value: i.toString(), children: times }
357357
})
358358
const hours = Array.from({ length: 24 }, (_, i) => {
359359
const t = i.toString().padStart(2, '0')

0 commit comments

Comments
 (0)