fix: ui fixes feat: move to engineering beta toggle feature

This commit is contained in:
DarkPhoenix2704
2024-11-20 17:43:10 +00:00
parent 380e2b8f3c
commit ef453e8baf
4 changed files with 131 additions and 105 deletions

View File

@@ -43,6 +43,13 @@ const FEATURES = [
enabled: false,
isEngineering: true,
},
{
id: 'calendar_view_range',
title: 'Allow configuring End Date for Calendar View',
description: 'Enables the calendar to display items as date ranges by allowing configuration of both start and end dates. ',
enabled: false,
isEngineering: true,
},
]
export const FEATURE_FLAG = Object.fromEntries(FEATURES.map((feature) => [feature.id.toUpperCase(), feature.id])) as Record<