Fix: DSL backup (#6616)
This commit is contained in:
@@ -434,7 +434,7 @@ const AppInfo = ({ expand }: IAppInfoProps) => {
|
|||||||
{showImportDSLModal && (
|
{showImportDSLModal && (
|
||||||
<UpdateDSLModal
|
<UpdateDSLModal
|
||||||
onCancel={() => setShowImportDSLModal(false)}
|
onCancel={() => setShowImportDSLModal(false)}
|
||||||
onBackup={onExport}
|
onBackup={exportCheck}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{secretEnvList.length > 0 && (
|
{secretEnvList.length > 0 && (
|
||||||
|
@@ -248,6 +248,7 @@ const Workflow: FC<WorkflowProps> = memo(({
|
|||||||
} = useWorkflow()
|
} = useWorkflow()
|
||||||
const { handleStartWorkflowRun } = useWorkflowStartRun()
|
const { handleStartWorkflowRun } = useWorkflowStartRun()
|
||||||
const {
|
const {
|
||||||
|
exportCheck,
|
||||||
handleExportDSL,
|
handleExportDSL,
|
||||||
} = useDSL()
|
} = useDSL()
|
||||||
|
|
||||||
@@ -334,7 +335,7 @@ const Workflow: FC<WorkflowProps> = memo(({
|
|||||||
showImportDSLModal && (
|
showImportDSLModal && (
|
||||||
<UpdateDSLModal
|
<UpdateDSLModal
|
||||||
onCancel={() => setShowImportDSLModal(false)}
|
onCancel={() => setShowImportDSLModal(false)}
|
||||||
onBackup={handleExportDSL}
|
onBackup={exportCheck}
|
||||||
onImport={handlePaneContextmenuCancel}
|
onImport={handlePaneContextmenuCancel}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user