mirror of
https://github.com/Unleash/unleash.git
synced 2025-03-23 00:16:25 +01:00
fix: filtering environments in the project features table (#2957)
 Fixes an issue where environments were not filtered correctly on the search, most likely due to some regression accidentally introduced with changes in the meantime.
This commit is contained in:
parent
96c65fc10d
commit
342a6f6cbe
@ -284,8 +284,8 @@ export const ProjectFeatureToggles = ({
|
|||||||
),
|
),
|
||||||
sortType: 'boolean',
|
sortType: 'boolean',
|
||||||
filterName: name,
|
filterName: name,
|
||||||
filterParsing: (value: any) =>
|
filterParsing: (value: boolean) =>
|
||||||
value.enabled ? 'enabled' : 'disabled',
|
value ? 'enabled' : 'disabled',
|
||||||
})),
|
})),
|
||||||
{
|
{
|
||||||
id: 'Actions',
|
id: 'Actions',
|
||||||
|
Loading…
Reference in New Issue
Block a user