Skip to content

Commit

Permalink
Small Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Perez committed Nov 20, 2024
1 parent 1d8885e commit b0d3d56
Show file tree
Hide file tree
Showing 2 changed files with 1,980 additions and 1,924 deletions.
4 changes: 3 additions & 1 deletion web-app/src/screens/Console/Policies/SetPolicy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,10 @@ const SetPolicy = ({
if (selectedGroups !== null) {
groups = selectedGroups;
} else {
users = [" "];

if (selectedUser !== null) {
users = [selectedUser.accessKey] || [" "];
users = [selectedUser.accessKey];
}
}

Expand Down
Loading

0 comments on commit b0d3d56

Please sign in to comment.