Skip to content

Commit

Permalink
feat: 解决数据双向同步的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
fengxiaotx committed Dec 21, 2023
1 parent 27e743c commit ac64650
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {Component, FC} from "react";
import React, {FC} from "react";
import {ProcessNode} from "../model";
import {observer} from "@formily/react";
import {useActivities} from "../hooks";
Expand All @@ -15,7 +15,6 @@ export const ActivityWidget: FC<ActivityWidgetProps> = observer(({
processNode,
...props
}) => {
console.log("ss", processNode.id,processNode)
const activities = useActivities()
const handleRender = () => {
const Activity: ActivityFC<any> = _.get(activities, [processNode.componentName]);
Expand Down

0 comments on commit ac64650

Please sign in to comment.