Skip to content

Commit

Permalink
Changed the reference from user to group (#728)
Browse files Browse the repository at this point in the history
  • Loading branch information
dnmll authored Feb 1, 2024
1 parent 8b67ca8 commit 469b206
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cid/helpers/quicksight/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ def select_group(self):
group_name = get_parameter(
param_name='quicksight-group',
message="Please select QuickSight Group to use",
choices={f"{user.get('UserName')} ({user.get('Email')}, {user.get('Role')})":user.get('UserName') for user in groups}
choices={f"{group.get('GroupName')} ({group.get('Description')})":group.get('GroupName') for group in groups}
)
for group in groups:
if group.get('GroupName') == group_name:
Expand Down

0 comments on commit 469b206

Please sign in to comment.