Skip to content

Commit

Permalink
Fix local configuration restore error
Browse files Browse the repository at this point in the history
  • Loading branch information
ghys committed Aug 24, 2016
1 parent 15f6118 commit 03783ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/settings/settings.controller.js
Expand Up @@ -5,8 +5,8 @@
.module('app')
.controller('SettingsCtrl', SettingsController);

SettingsController.$inject = ['$rootScope', 'OH2ServiceConfiguration', 'OH2StorageService', 'prompt'];
function SettingsController($rootScope, OH2ServiceConfiguration, OH2StorageService, prompt) {
SettingsController.$inject = ['$rootScope', 'OH2ServiceConfiguration', 'OH2StorageService', 'PersistenceService', 'prompt'];
function SettingsController($rootScope, OH2ServiceConfiguration, OH2StorageService, PersistenceService, prompt) {
var vm = this;
//vm.serviceConfiguration = OH2ServiceConfiguration;
vm.useRegistry = $rootScope.useRegistry;
Expand Down

0 comments on commit 03783ee

Please sign in to comment.