Skip to content

Commit

Permalink
Fix up flag wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Jan 8, 2024
1 parent 4eacb61 commit 7bab432
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/scenes/feature-flags/FeatureFlag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,16 +135,16 @@ export function FeatureFlag({ id }: { id?: string } = {}): JSX.Element {
key: FeatureFlagsTab.OVERVIEW,
content: (
<>
<div className="flex space-x-4">
<div className="flex-7">
<div className="flex gap-4 flex-wrap">
<div className="flex-1">
<FeatureFlagRollout readOnly />
{featureFlag.filters.super_groups && <FeatureFlagReleaseConditions readOnly isSuper />}
<FeatureFlagReleaseConditions readOnly />
{featureFlags[FEATURE_FLAGS.AUTO_ROLLBACK_FEATURE_FLAGS] && (
<FeatureFlagAutoRollback readOnly />
)}
</div>
<div className="flex-6">
<div className="max-w-120 w-full">
<RecentFeatureFlagInsights />
<div className="my-4" />
</div>
Expand Down

0 comments on commit 7bab432

Please sign in to comment.