Skip to content

Commit

Permalink
fix: jans-cli Error on deleting Claims in scopes(ref: #3106)
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdelwahabAdam committed Nov 29, 2022
1 parent 3469e03 commit 449d954
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def delete_claim(self, **kwargs: Any) -> None:
"""

dialog = self.myparent.get_confirm_dialog(_("Are you sure want to delete claim dn:")+"\n {} ?".format(selected[0]))
dialog = self.myparent.get_confirm_dialog(_("Are you sure want to delete claim dn:")+"\n {} ?".format(kwargs['selected'][0]))
async def coroutine():
focused_before = self.myparent.layout.current_window
result = await self.myparent.show_dialog_as_float(dialog)
Expand Down

0 comments on commit 449d954

Please sign in to comment.