Skip to content

Commit

Permalink
Bug-fix: go_to_detail_state_params_override
Browse files Browse the repository at this point in the history
  • Loading branch information
Vasia Korobkin committed Jul 24, 2015
1 parent e891f63 commit 3fefac8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/javascripts/ng-admin/Crud/column/maColumn.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ define(function (require) {
route = 'show';
}
$state.go($state.get(route),
angular.extend({
angular.extend({}, $state.params, {
entity: scope.entry.entityName,
id: scope.entry.identifierValue
}, $state.params));
}));
};
scope.gotoReference = function () {
var referenceEntity = scope.field.targetEntity().name();
Expand Down

0 comments on commit 3fefac8

Please sign in to comment.