We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d31fb4 commit 88e448bCopy full SHA for 88e448b
1 file changed
frontend/web/components/feature-summary/FeatureRow.tsx
@@ -372,6 +372,11 @@ const FeatureRow: FC<FeatureRowProps> = (props) => {
372
<FeatureName name={projectFlag.name} />
373
<FeatureTags editFeature={editFeature} projectFlag={projectFlag} />
374
</div>
375
+ <div
376
+ onClick={(e) => {
377
+ e.stopPropagation()
378
+ }}
379
+ >
380
<Switch
381
disabled={!permission || isReadOnly || isLoading}
382
data-test={`feature-switch-${index}${
@@ -380,6 +385,7 @@ const FeatureRow: FC<FeatureRowProps> = (props) => {
385
checked={displayEnabled}
386
onChange={onChange}
387
/>
388
+ </div>
383
389
<FeatureAction {...featureActionProps} disableE2E={true} />
384
390
391
0 commit comments