Add record table widget feature flag (#18960)

Introduce a new feature flag for the record table widget, enabling
conditional rendering and state management based on its status. Update
related components and tests accordingly.

---------

Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
This commit is contained in:
Lucas Bordeau
2026-03-25 17:47:20 +01:00
committed by GitHub
parent cc247c2e8e
commit 33a474c8e6
9 changed files with 46 additions and 26 deletions
@@ -115,6 +115,11 @@ export const seedFeatureFlags = async ({
workspaceId: workspaceId,
value: true,
},
{
key: FeatureFlagKey.IS_RECORD_TABLE_WIDGET_ENABLED,
workspaceId: workspaceId,
value: true,
},
])
.execute();
};