Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.web.ui')
-rw-r--r--plugins/org.eclipse.osee.web.ui/src/dispo/js/adminController.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.web.ui/src/dispo/js/adminController.js b/plugins/org.eclipse.osee.web.ui/src/dispo/js/adminController.js
index 3e99dae8520..7e4840070e4 100644
--- a/plugins/org.eclipse.osee.web.ui/src/dispo/js/adminController.js
+++ b/plugins/org.eclipse.osee.web.ui/src/dispo/js/adminController.js
@@ -285,11 +285,10 @@
}, function(data) {
$scope.isCopying = false;
var reportUrl = data.operationStatus;
- window.open(reportUrl);
- console.log(data);
+ $scope.getSetImportDetails(destinationSet);
}, function(data) {
$scope.isCopying = false;
- alert("Oops...Something went wrong");
+ $scope.getSetImportDetails(destinationSet);
});
}

Back to the top