mirror of
https://github.com/usual2970/certimate.git
synced 2025-07-03 17:49:56 +00:00
Merge branch 'next' into feat/new-workflow-ui
This commit is contained in:
commit
695c99119f
@ -13,6 +13,7 @@ import { Input } from "../ui/input";
|
||||
import { useWorkflowStore, WorkflowState } from "@/stores/workflow";
|
||||
import { WorkflowNode, WorkflowNodeConfig } from "@/domain/workflow";
|
||||
import { usePanel } from "./PanelProvider";
|
||||
import { RadioChangeEvent } from "antd/lib";
|
||||
|
||||
const formSchema = z
|
||||
.object({
|
||||
@ -98,7 +99,7 @@ const StartForm = ({ data }: StartFormProps) => {
|
||||
<Radio.Group
|
||||
{...field}
|
||||
value={method}
|
||||
onChange={(e) => {
|
||||
onChange={(e: RadioChangeEvent) => {
|
||||
setMethod(e.target.value);
|
||||
}}
|
||||
className="flex space-x-3"
|
||||
|
4
ui/src/declarations.d.ts
vendored
Normal file
4
ui/src/declarations.d.ts
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
declare module "antd/locale/zh_CN" {
|
||||
import zhCN from "antd/locale/zh_CN";
|
||||
export default zhCN;
|
||||
}
|
@ -1 +1 @@
|
||||
export const version = "v0.3.0-alpha.6";
|
||||
export const version = "v0.3.0-alpha.8";
|
||||
|
Loading…
x
Reference in New Issue
Block a user