mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	chore: add the projectListNewCards flag (#6898)
				
					
				
			This PR adds the `projectListNewCards` flag to the constant defined in `experimental.ts`. This should allow the API to pass that value to the front end.
This commit is contained in:
		
							parent
							
								
									ef91a5a8da
								
							
						
					
					
						commit
						b8380a0b5b
					
				@ -139,6 +139,7 @@ exports[`should create default config 1`] = `
 | 
			
		||||
      "projectListFilterMyProjects": false,
 | 
			
		||||
      "projectOverviewRefactor": false,
 | 
			
		||||
      "projectOverviewRefactorFeedback": false,
 | 
			
		||||
      "projectsListNewCards": false,
 | 
			
		||||
      "queryMissingTokens": false,
 | 
			
		||||
      "responseTimeMetricsFix": false,
 | 
			
		||||
      "responseTimeWithAppNameKillSwitch": false,
 | 
			
		||||
 | 
			
		||||
@ -304,6 +304,10 @@ const flags: IFlags = {
 | 
			
		||||
        process.env.UNLEASH_EXPERIMENTAL_APPLICATION_OVERVIEW_NEW_QUERY,
 | 
			
		||||
        false,
 | 
			
		||||
    ),
 | 
			
		||||
    projectsListNewCards: parseEnvVarBoolean(
 | 
			
		||||
        process.env.UNLEASH_EXPERIMENTAL_PROJECTS_LIST_NEW_CARDS,
 | 
			
		||||
        false,
 | 
			
		||||
    ),
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export const defaultExperimentalOptions: IExperimentalOptions = {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user