fixes edit button for organization project view (#5134)

This commit is contained in:
Jake McDermott
2017-02-02 10:40:18 -05:00
committed by GitHub
parent 71c190e025
commit 1ab62a48ed

View File

@@ -180,7 +180,7 @@ export default ['$scope', '$rootScope', '$location', '$log',
}); });
$scope.editProject = function(id) { $scope.editProject = function(id) {
$state.transitionTo('projects.edit', { id: id }); $state.go('projects.edit', { project_id: id });
}; };
if ($scope.removeGoToJobDetails) { if ($scope.removeGoToJobDetails) {