Преглед изворни кода

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)
         .then((migration: MainItem) => {
           migrationStore.clearDetails()
-          window.location.href = `/#/migration/${migration.id}`
+          window.location.href = `/#/migration/tasks/${migration.id}`
           this.props.onRequestClose()
         })
     }