Skip to content
Snippets Groups Projects
Commit ddb7f07f authored by Allen Gilliland's avatar Allen Gilliland
Browse files

fix issue with stale reference to angular ForeignKey service.

parent 22eaf55c
No related branches found
No related tags found
No related merge requests found
......@@ -11,8 +11,8 @@ angular
'metabase.directives',
'metabase.forms'
])
.controller('MetadataEditor', ['$scope', '$route', '$routeParams', '$location', '$q', '$timeout', 'databases', 'Metabase', 'ForeignKey', 'Segment', 'Metric',
function($scope, $route, $routeParams, $location, $q, $timeout, databases, Metabase, ForeignKey, Segment, Metric) {
.controller('MetadataEditor', ['$scope', '$route', '$routeParams', '$location', '$q', '$timeout', 'databases', 'Metabase', 'Segment', 'Metric',
function($scope, $route, $routeParams, $location, $q, $timeout, databases, Metabase, Segment, Metric) {
// inject the React component to be rendered
$scope.MetadataEditor = MetadataEditor;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment