Skip to content

Commit

Permalink
fix(saas/login): redirect with size=big (#494)
Browse files Browse the repository at this point in the history
  • Loading branch information
wklken authored Jun 14, 2022
1 parent ae409e5 commit 1ad0789
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/saas/bkuser_shell/account/handlers/response.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ def _build_page_401_response_to_platform(self, request):
return HttpResponseRedirect(_login_url)

def _build_extra_args(self):
extra_args = None
extra_args = {"size": "big"}
if self._conf.ADD_APP_CODE:
extra_args = {self._conf.APP_KEY: getattr(self._settings, self._conf.SETTINGS_APP_KEY)}
extra_args.update({self._conf.APP_KEY: getattr(self._settings, self._conf.SETTINGS_APP_KEY)})
return extra_args

def build_bk_jwt_401_response(self, request):
Expand Down

0 comments on commit 1ad0789

Please sign in to comment.