Мелкие правки по коду: поправлен размер шрифта ектста активации аккаунта, исправлено появление исключения в случае предусмотренной ошибки, npm-debug добавлен в gitignore

This commit is contained in:
ErickSkrauch 2016-04-15 01:10:19 +03:00
parent a2293b570e
commit 72d03338f6
2 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,7 @@ export function login({login = '', password = '', rememberMe = false}) {
} }
const errorMessage = resp.errors[Object.keys(resp.errors)[0]]; const errorMessage = resp.errors[Object.keys(resp.errors)[0]];
dispatch(setError(errorMessage)); dispatch(setError(errorMessage));
} else {
throw new Error(errorMessage); throw new Error(errorMessage);
} }

View File

@ -15,6 +15,7 @@
font-family: $font-family-title; font-family: $font-family-title;
margin: 5px 0 19px; margin: 5px 0 19px;
line-height: 1.4; line-height: 1.4;
font-size: 16px;
} }
.activationCodeInput { .activationCodeInput {