Removes unnecessary translation. Fix javascript error
This commit is contained in:
parent
773a4fc98d
commit
87aa0ea29b
2 changed files with 2 additions and 2 deletions
|
|
@ -184,7 +184,7 @@ angular.module('copayApp.controllers').controller('createController',
|
||||||
src = intelTEE;
|
src = intelTEE;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
this.error = gettextCatalog.getString('Invalid seed source id: ' + $scope.seedSource.id);
|
popupService.showAlert(gettextCatalog.getString('Error'), 'Invalid seed source id');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -160,7 +160,7 @@ angular.module('copayApp.controllers').controller('joinController',
|
||||||
src = intelTEE;
|
src = intelTEE;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
this.error = gettextCatalog.getString('Invalid seed source id: ' + self.seedSourceId);
|
popupService.showAlert(gettextCatalog.getString('Error'), 'Invalid seed source id');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue