Skip to content

Commit 6f6846e

Browse files
authored
Fixed disabled Assign Policy button for multiple group selection (#1984)
1 parent 6409d36 commit 6f6846e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

portal-ui/src/screens/Console/Groups/Groups.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ const Groups = ({ classes, setErrorSnackMessage, history }: IGroupsProps) => {
239239
text={"Assign Policy"}
240240
icon={<IAMPoliciesIcon />}
241241
color="primary"
242-
disabled={checkedGroups.length !== 1}
242+
disabled={checkedGroups.length < 1}
243243
variant={"outlined"}
244244
/>
245245

0 commit comments

Comments
 (0)