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()
}