diff --git a/public/views/create.html b/public/views/create.html
index 489808cf3..a408d08fb 100644
--- a/public/views/create.html
+++ b/public/views/create.html
@@ -112,7 +112,7 @@
diff --git a/public/views/join.html b/public/views/join.html
index 437a07fdc..f7bf49656 100644
--- a/public/views/join.html
+++ b/public/views/join.html
@@ -94,7 +94,7 @@
diff --git a/src/js/controllers/create.js b/src/js/controllers/create.js
index 7bcf141b5..33a9339fb 100644
--- a/src/js/controllers/create.js
+++ b/src/js/controllers/create.js
@@ -35,7 +35,7 @@ angular.module('copayApp.controllers').controller('createController',
$scope.requiredCopayers = Math.min(parseInt(n / 2 + 1), maxReq);
};
- this.externatIndexValues = lodash.range(0,20);
+ this.externalIndexValues = lodash.range(0,20);
$scope.externalIndex = 0;
this.TCValues = lodash.range(2, defaults.limits.totalCopayers + 1);
$scope.totalCopayers = defaults.wallet.totalCopayers;
diff --git a/src/js/controllers/join.js b/src/js/controllers/join.js
index a5e732030..8e338f751 100644
--- a/src/js/controllers/join.js
+++ b/src/js/controllers/join.js
@@ -4,7 +4,7 @@ angular.module('copayApp.controllers').controller('joinController',
function($scope, $rootScope, $timeout, go, isMobile, notification, profileService, isCordova, isChromeApp, $modal, gettext, lodash, ledger) {
var self = this;
- this.externatIndexValues = lodash.range(0,20);
+ this.externalIndexValues = lodash.range(0,20);
$scope.externalIndex = 0;
this.isChromeApp = function() {