Explorar el Código

Redirect to tasks page on migration recreation

Sergiu Miclea hace 7 años
padre
commit
06f0bfca28
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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)
         .then((migration: MainItem) => {
           migrationStore.clearDetails()
-          window.location.href = `/#/migration/${migration.id}`
+          window.location.href = `/#/migration/tasks/${migration.id}`
           this.props.onRequestClose()
         })
     }