From 4ee798142573e1ad4ed51b80c4677583b3c8053c Mon Sep 17 00:00:00 2001 From: bogd Date: Thu, 12 Dec 2024 17:30:26 +0200 Subject: [PATCH] cron global switch added --- cards/CronCard.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cards/CronCard.vue b/cards/CronCard.vue index 6542823..708c39a 100644 --- a/cards/CronCard.vue +++ b/cards/CronCard.vue @@ -4,6 +4,7 @@
CRON Scheduler
+ @@ -36,6 +37,7 @@ Add task + @@ -43,6 +45,7 @@ import { reactive, computed } from "vue"; import { PostData } from "components/webguicomp/network"; import { ShowDelayDialog } from "components/webguicomp/helpers"; +import CardActions from "components/webguicomp/CardActions.vue"; const typestr = computed({ get() { return (data.cronrecs[key - 1].type).toString() } @@ -71,6 +74,7 @@ function initrecs() { }; const init = { + cronrecs_enab: true, cronrecs: initrecs() }