Bugfixes
Fixed opacity for modal arrow Fixed empty last name during registration
This commit is contained in:
parent
67fa3cbe73
commit
50d2c079e2
@ -1586,7 +1586,7 @@ div.im_dialog_photo .peer_initials {
|
||||
background-size: 40px 200px;
|
||||
width: 16px;
|
||||
height: 24px;
|
||||
opacity: 0.3;
|
||||
opacity: 0.15;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
pointer-events: none;
|
||||
|
@ -273,8 +273,8 @@ angular.module('myApp.controllers', ['myApp.i18n'])
|
||||
if (forceSignUp) {
|
||||
method = 'auth.signUp';
|
||||
angular.extend(params, {
|
||||
first_name: $scope.credentials.first_name,
|
||||
last_name: $scope.credentials.last_name
|
||||
first_name: $scope.credentials.first_name || '',
|
||||
last_name: $scope.credentials.last_name || ''
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user