Skip to content

Commit

Permalink
Merge pull request #1161 from ajmengistu/jans-cli-typos-fix
Browse files Browse the repository at this point in the history
fix: typo in jans-cli interactive mode
  • Loading branch information
ossdhaval committed Apr 7, 2022
2 parents 6f114f2 + 25f5971 commit dfa19f0
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 dfa19f0

Please sign in to comment.