- Usernames with dots or dashes are incompatible with Docker verion 1.8 or older
+ Usernames with dots or dashes are incompatible with Docker version 1.8 or older
Usernames must be alphanumeric and be at least four characters in length
diff --git a/static/js/pages/error-view.js b/static/js/pages/error-view.js
index e81e94ac3..d5b03ec5b 100644
--- a/static/js/pages/error-view.js
+++ b/static/js/pages/error-view.js
@@ -11,7 +11,7 @@
}]);
function ErrorViewCtrl($scope, ApiService, $routeParams, UserService) {
- $scope.info = window.__error_info || {};
+ $scope.info = window.__error_info;
$scope.code = window.__error_code || 404;
}
}());
\ No newline at end of file
diff --git a/static/js/services/notification-service.js b/static/js/services/notification-service.js
index 875fed7dd..02526699d 100644
--- a/static/js/services/notification-service.js
+++ b/static/js/services/notification-service.js
@@ -48,7 +48,9 @@ function($rootScope, $interval, UserService, ApiService, StringBuilderService, P
'password_required': {
'level': 'error',
'message': 'In order to begin pushing and pulling repositories, a password must be set for your account',
- 'page': '/user?tab=password'
+ 'page': function(metadata) {
+ return '/user/' + UserService.currentUser()['username'] + '?tab=settings';
+ }
},
'over_private_usage': {
'level': 'error',
diff --git a/static/partials/error-view.html b/static/partials/error-view.html
index fe53d8fb2..cefbd1562 100644
--- a/static/partials/error-view.html
+++ b/static/partials/error-view.html
@@ -2,9 +2,9 @@
404: Not Found
-
The resource you're looking for doesn't exists
-
Namespace {{ info.namespace }} doesn't exists
-
The repository you're looking for doesn't exists
+
The resource you're looking for doesn't exist
+
Namespace {{ info.namespace }} doesn't exist
+
The repository you're looking for doesn't exist

diff --git a/static/partials/new-organization.html b/static/partials/new-organization.html
index 5022182d1..d77160201 100644
--- a/static/partials/new-organization.html
+++ b/static/partials/new-organization.html
@@ -45,7 +45,7 @@
- Organization names with dots or dashes are incompatible with Docker verion 1.8 or older
+ Organization names with dots or dashes are incompatible with Docker version 1.8 or older
Organization names must be alphanumeric and be at least four characters in length
diff --git a/static/partials/update-user.html b/static/partials/update-user.html
index 7e9ff698b..a6a959acb 100644
--- a/static/partials/update-user.html
+++ b/static/partials/update-user.html
@@ -30,7 +30,7 @@
Usernames must be alphanumeric and be at least four characters in length
- Note: Usernames with dots or dashes are incompatible with Docker verion 1.8 or older
+ Note: Usernames with dots or dashes are incompatible with Docker version 1.8 or older