소스 검색

Browser back button from result page goes to index ignoring queue

Gaël Métais 10 년 전
부모
커밋
b6df64337d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      front/src/js/controllers/queueCtrl.js

+ 1 - 1
front/src/js/controllers/queueCtrl.js

@@ -15,7 +15,7 @@ queueCtrl.controller('QueueCtrl', ['$scope', '$routeParams', '$location', 'Runs'
                 setTimeout(getRunStatus, 2000 + (numberOfTries * 100));
 
             } else if (data.status.statusCode === 'complete') {
-                $location.path('/result/' + $scope.runId);
+                $location.path('/result/' + $scope.runId).replace();
             } else {
                 // Handled by the view
             }