Skip to content

Commit 5767d93

Browse files
authored
Merge pull request #2755 from Arielgordon123/fix-cron-format
fix: Show next cron run correctly
2 parents 07dd28d + 98a125d commit 5767d93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/components/ScheduleForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ export default {
330330
331331
methods: {
332332
nextRunTime() {
333-
return parser.parseExpression(this.item.cron_format).next();
333+
return parser.parseExpression(this.item.cron_format).next().toString();
334334
},
335335
336336
refreshCheckboxes() {

0 commit comments

Comments
 (0)