Skip to content

Commit

Permalink
fix(flags): set selector value (#17678)
Browse files Browse the repository at this point in the history
  • Loading branch information
jurajmajerik authored Oct 2, 2023
1 parent 8b7f181 commit 78cdf49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/scenes/feature-flags/FeatureFlags.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ export function OverViewTab({
{ label: 'Multiple variants', value: 'multivariant' },
{ label: 'Experiment', value: 'experiment' },
]}
value="all"
value={filters.type ?? 'all'}
/>
</>
)}
Expand All @@ -304,7 +304,7 @@ export function OverViewTab({
{ label: 'Enabled', value: 'true' },
{ label: 'Disabled', value: 'false' },
]}
value="all"
value={filters.active ?? 'all'}
/>
<span className="ml-1">
<b>Created by</b>
Expand All @@ -323,7 +323,7 @@ export function OverViewTab({
}
}}
options={uniqueCreators}
value="any"
value={filters.created_by ?? 'any'}
/>
</div>
</div>
Expand Down

0 comments on commit 78cdf49

Please sign in to comment.