Skip to content

Commit

Permalink
RANGER-4675: Checkbox selection issue when clicking on permission lab…
Browse files Browse the repository at this point in the history
…el in tag-based permissions policy
  • Loading branch information
Brijesh619 authored and dhavalshah9131 committed Feb 1, 2024
1 parent 9dcb210 commit 4efae9a
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -442,12 +442,11 @@ export default function TagBasePermissionItem(props) {
<div>
{tagServicePerms[
fields.value[index].serviceName
].map((obj, index) => (
<h6 className="d-inline" key={index}>
].map((obj) => (
<h6 className="d-inline" key={obj.value}>
<FormB.Group
className="d-inline"
controlId={obj.label}
key={obj.label}
controlId={obj.value}
>
<FormB.Check
inline
Expand Down

0 comments on commit 4efae9a

Please sign in to comment.