Skip to content

Commit

Permalink
fix: typo in jans-cli interactive mode
Browse files Browse the repository at this point in the history
  • Loading branch information
ajmengistu committed Apr 4, 2022
1 parent a83f932 commit 25f5971
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/user/using-jans-cli/im/im-openid-connect-clients.md
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ If you enter `y` to **Populate optional fields?** then you will get a lot of opt

```
Populate optional fields? y
Optiaonal Fields:
Optional Fields:
1 clientSecret
2 frontChannelLogoutUri
3 registrationAccessToken
Expand Down
2 changes: 1 addition & 1 deletion jans-cli/cli/config_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1234,7 +1234,7 @@ def process_post(self, endpoint):
fill_optional = self.get_input(values=['y', 'n'], text='Populate optional fields?')
fields_numbers = []
if fill_optional == 'y':
print("Optiaonal Fields:")
print("Optional Fields:")
for i, field in enumerate(optional_fields):
print(i + 1, field)
fields_numbers.append(str(i + 1))
Expand Down

0 comments on commit 25f5971

Please sign in to comment.