ソースを参照

Redirect to tasks page on migration recreation

Sergiu Miclea 7 年 前
コミット
06f0bfca28
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/components/organisms/EditReplica/EditReplica.jsx

+ 1 - 1
src/components/organisms/EditReplica/EditReplica.jsx

@@ -217,7 +217,7 @@ class EditReplica extends React.Component<Props, State> {
       migrationStore.recreate(this.props.replica, this.props.sourceEndpoint, this.props.destinationEndpoint, updateData)
       migrationStore.recreate(this.props.replica, this.props.sourceEndpoint, this.props.destinationEndpoint, updateData)
         .then((migration: MainItem) => {
         .then((migration: MainItem) => {
           migrationStore.clearDetails()
           migrationStore.clearDetails()
-          window.location.href = `/#/migration/${migration.id}`
+          window.location.href = `/#/migration/tasks/${migration.id}`
           this.props.onRequestClose()
           this.props.onRequestClose()
         })
         })
     }
     }