disabled is default option
This commit is contained in:
parent
611e76ea77
commit
c65ede1db6
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ angular.module('copayApp.controllers').controller('lockSetupController', functio
|
||||||
|
|
||||||
function getSavedMethod() {
|
function getSavedMethod() {
|
||||||
var config = configService.getSync();
|
var config = configService.getSync();
|
||||||
if (config.lock) return config.lock.method;
|
if (config.lock && config.lock.method) return config.lock.method;
|
||||||
return 'none';
|
return 'none';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue