Skip to content

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
usual2970 committed Dec 22, 2024
1 parent 88cbf30 commit ba73e04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ui/src/components/workflow/StartForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down Expand Up @@ -98,7 +99,7 @@ const StartForm = ({ data }: StartFormProps) => {
<Radio.Group
{...field}
value={method}
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
onChange={(e: RadioChangeEvent) => {
setMethod(e.target.value);
}}
className="flex space-x-3"
Expand Down
2 changes: 1 addition & 1 deletion ui/src/domain/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = "v0.3.0-alpha.7";
export const version = "v0.3.0-alpha.8";

0 comments on commit ba73e04

Please sign in to comment.