Skip to content

Commit

Permalink
fix: link to segment and identity override
Browse files Browse the repository at this point in the history
Ref: #5009
  • Loading branch information
tiagoapolo committed Jan 30, 2025
1 parent 9ea58fa commit 6dde829
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions frontend/web/components/FeatureRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,14 +310,22 @@ class TheComponent extends Component {
<SegmentOverridesIcon
onClick={(e) => {
e.stopPropagation()
this.editFeature(projectFlag, environmentFlags[id], 1)
this.editFeature(
projectFlag,
environmentFlags[id],
'segment-overrides',
)
}}
count={projectFlag.num_segment_overrides}
/>
<IdentityOverridesIcon
onClick={(e) => {
e.stopPropagation()
this.editFeature(projectFlag, environmentFlags[id], 1)
this.editFeature(
projectFlag,
environmentFlags[id],
'identity-overrides',
)
}}
count={projectFlag.num_identity_overrides}
showPlusIndicator={showPlusIndicator}
Expand Down

0 comments on commit 6dde829

Please sign in to comment.