mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 03:32:23 +08:00
Fix: DSL backup (#6616)
This commit is contained in:
parent
3c78fdec1c
commit
2aad128883
|
@ -434,7 +434,7 @@ const AppInfo = ({ expand }: IAppInfoProps) => {
|
|||
{showImportDSLModal && (
|
||||
<UpdateDSLModal
|
||||
onCancel={() => setShowImportDSLModal(false)}
|
||||
onBackup={onExport}
|
||||
onBackup={exportCheck}
|
||||
/>
|
||||
)}
|
||||
{secretEnvList.length > 0 && (
|
||||
|
|
|
@ -248,6 +248,7 @@ const Workflow: FC<WorkflowProps> = memo(({
|
|||
} = useWorkflow()
|
||||
const { handleStartWorkflowRun } = useWorkflowStartRun()
|
||||
const {
|
||||
exportCheck,
|
||||
handleExportDSL,
|
||||
} = useDSL()
|
||||
|
||||
|
@ -334,7 +335,7 @@ const Workflow: FC<WorkflowProps> = memo(({
|
|||
showImportDSLModal && (
|
||||
<UpdateDSLModal
|
||||
onCancel={() => setShowImportDSLModal(false)}
|
||||
onBackup={handleExportDSL}
|
||||
onBackup={exportCheck}
|
||||
onImport={handlePaneContextmenuCancel}
|
||||
/>
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue
Block a user