From 4185f2d8ac115a619e8bac7ba3633852827998be Mon Sep 17 00:00:00 2001 From: Yehor Butko Date: Tue, 23 Apr 2019 17:46:54 +0300 Subject: [PATCH] satellite bugfix (#1816) * satellite bugfix --- satellite/console/service.go | 1 + web/satellite/src/App.vue | 27 +++++++++++++++++- .../src/components/common/HeaderlessInput.vue | 12 ++++++-- web/satellite/src/store/modules/appState.ts | 7 ----- web/satellite/src/store/modules/projects.ts | 1 + web/satellite/src/utils/avatarColorManager.ts | 2 +- .../views/forgotPassword/ForgotPassword.vue | 28 +++++++++++++++---- .../views/forgotPassword/forgotPassword.html | 10 +++---- .../views/forgotPassword/forgotPassword.scss | 2 +- web/satellite/src/views/login/Login.vue | 27 ++++++++++++++++-- web/satellite/src/views/login/login.html | 16 ++++++----- web/satellite/src/views/login/login.scss | 14 +++++----- web/satellite/src/views/register/Register.vue | 4 ++- .../src/views/register/register.scss | 2 +- 14 files changed, 110 insertions(+), 43 deletions(-) diff --git a/satellite/console/service.go b/satellite/console/service.go index 396a234bc..546afa5c6 100644 --- a/satellite/console/service.go +++ b/satellite/console/service.go @@ -317,6 +317,7 @@ func (s *Service) UpdateAccount(ctx context.Context, info UserInfo) (err error) ShortName: info.ShortName, Email: email, PasswordHash: nil, + Status: auth.User.Status, }) if err != nil { return errs.New(internalErrMsg) diff --git a/web/satellite/src/App.vue b/web/satellite/src/App.vue index e65c9a34d..7accd9202 100644 --- a/web/satellite/src/App.vue +++ b/web/satellite/src/App.vue @@ -2,7 +2,7 @@ // See LICENSE for copying information.