Просмотр исходного кода

Redirect to tasks page on migration recreation

Sergiu Miclea 7 лет назад
Родитель
Сommit
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)
         .then((migration: MainItem) => {
           migrationStore.clearDetails()
-          window.location.href = `/#/migration/${migration.id}`
+          window.location.href = `/#/migration/tasks/${migration.id}`
           this.props.onRequestClose()
         })
     }