Skip to content

Commit

Permalink
fix: 修复存在parse prop时重置失效问题 (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
mengshang918 committed Feb 18, 2022
1 parent 7b7040e commit 239f7e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/drip-form/src/DripForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @Author: jiangxiaowei
* @Date: 2020-05-14 16:54:32
* @Last Modified by: jiangxiaowei
* @Last Modified time: 2022-02-11 15:10:39
* @Last Modified time: 2022-02-11 19:22:51
*/
import React, {
forwardRef,
Expand Down Expand Up @@ -434,7 +434,7 @@ const DripForm = forwardRef<DripFormRefType, DripFormRenderProps>(
checking={checking}
errors={errors}
formData={formData}
initFormData={parseFormData}
initFormData={initArgs.formData}
dispatch={dispatch}
/>
</div>
Expand Down

0 comments on commit 239f7e0

Please sign in to comment.