disabled is default option

This commit is contained in:
Gabriel Bazán 2017-06-12 11:49:34 -03:00
parent 611e76ea77
commit c65ede1db6
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ angular.module('copayApp.controllers').controller('lockSetupController', functio
function getSavedMethod() {
var config = configService.getSync();
if (config.lock) return config.lock.method;
if (config.lock && config.lock.method) return config.lock.method;
return 'none';
};