Browse Source

[Bug] [UI Next][V1.0.0-Alpha] Fix workflow import form was not cleaned up bug (#8905)

Devosend 3 years ago
parent
commit
58e341c19c

+ 2 - 2
dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/use-modal.ts

@@ -54,8 +54,8 @@ export function useModal(
   })
 
   const resetImportForm = () => {
-    state.importFormRef.name = ''
-    state.importFormRef.file = ''
+    state.importForm.name = ''
+    state.importForm.file = ''
   }
 
   const handleImportDefinition = async () => {