Added public lab feature flag for search any field (#13430)
This PR adds a public feature flag for search any field. This feature flag default value has been set to false also to avoid breaking the frontend, we'll wait for a sync metadata in the next release on all workspace to remove this feature flag.
This commit is contained in:
@ -30,6 +30,15 @@ export const PUBLIC_FEATURE_FLAGS: PublicFeatureFlag[] = [
|
|||||||
imagePath: '',
|
imagePath: '',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: FeatureFlagKey.IS_ANY_FIELD_SEARCH_ENABLED,
|
||||||
|
metadata: {
|
||||||
|
label: 'Any field filter',
|
||||||
|
description:
|
||||||
|
'Search multiple fields at the same time with the new "Search any field" feature on tables and kanbans',
|
||||||
|
imagePath: '',
|
||||||
|
},
|
||||||
|
},
|
||||||
...(process.env.CLOUDFLARE_API_KEY
|
...(process.env.CLOUDFLARE_API_KEY
|
||||||
? [
|
? [
|
||||||
// {
|
// {
|
||||||
|
|||||||
@ -58,7 +58,7 @@ export const seedFeatureFlags = async (
|
|||||||
{
|
{
|
||||||
key: FeatureFlagKey.IS_ANY_FIELD_SEARCH_ENABLED,
|
key: FeatureFlagKey.IS_ANY_FIELD_SEARCH_ENABLED,
|
||||||
workspaceId: workspaceId,
|
workspaceId: workspaceId,
|
||||||
value: true,
|
value: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: FeatureFlagKey.IS_TWO_FACTOR_AUTHENTICATION_ENABLED,
|
key: FeatureFlagKey.IS_TWO_FACTOR_AUTHENTICATION_ENABLED,
|
||||||
|
|||||||
Reference in New Issue
Block a user