Skip to content

Commit

Permalink
fix: jans-cli screen hangs on scim save (ref: #3061)
Browse files Browse the repository at this point in the history
  • Loading branch information
devrimyatar committed Nov 23, 2022
1 parent e2da3fd commit 0720215
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions jans-cli-tui/cli_tui/plugins/030_scim/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,8 @@ def save_app_config(self) -> None:
if data[key] and key not in self.app_config:
patche_list.append({'op':'add', 'path': key, 'value': data[key]})


if not patche_list:
self.app.show_message(_("Warning"), _("No changes was done on Scim appilication configuration. Nothing to save."))
self.app.show_message(_("Warning"), _("No changes was done on Scim appilication configuration. Nothing to save."), tobefocused=self.app.center_container)
return

async def coroutine():
Expand Down

0 comments on commit 0720215

Please sign in to comment.