improve data display

This commit is contained in:
yoan
2024-11-15 08:06:39 +08:00
parent 9132d47f4d
commit 8901f5d40e
8 changed files with 385 additions and 23 deletions

View File

@@ -4,7 +4,7 @@ import i18n from "@/i18n";
import { deployTargets, KVType } from "./domain";
export type Workflow = {
id?: string;
id: string;
name: string;
description?: string;
type: string;
@@ -125,6 +125,7 @@ export const initWorkflow = (): Workflow => {
root.next = newWorkflowNode(WorkflowNodeType.Notify, {});
return {
id: "",
name: i18n.t("workflow.default.name"),
type: "auto",
crontab: "0 0 * * *",