From fd5b1c034157b9a28e0a88e3e2d4873bb5d0d076 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 8 Apr 2024 11:04:56 +0200 Subject: [PATCH] :sparkles: Enable by default components v2 feature --- backend/scripts/repl | 1 - backend/scripts/start-dev | 1 - common/src/app/common/features.cljc | 3 ++- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/backend/scripts/repl b/backend/scripts/repl index 6336331e4..ddc2fba5f 100755 --- a/backend/scripts/repl +++ b/backend/scripts/repl @@ -26,7 +26,6 @@ export PENPOT_FLAGS="\ enable-soft-rpc-rlimit \ enable-webhooks \ enable-access-tokens \ - disable-feature-components-v2 \ enable-file-validation \ enable-file-schema-validation"; diff --git a/backend/scripts/start-dev b/backend/scripts/start-dev index 1a2fa2842..2497e801e 100755 --- a/backend/scripts/start-dev +++ b/backend/scripts/start-dev @@ -18,7 +18,6 @@ export PENPOT_FLAGS="\ enable-rpc-climit \ enable-smtp \ enable-access-tokens \ - disable-feature-components-v2 \ enable-file-validation \ enable-file-schema-validation"; diff --git a/common/src/app/common/features.cljc b/common/src/app/common/features.cljc index 90b27587f..fffa5b6a6 100644 --- a/common/src/app/common/features.cljc +++ b/common/src/app/common/features.cljc @@ -58,7 +58,8 @@ (def default-enabled-features #{"fdata/shape-data-type" "styles/v2" - "layout/grid"}) + "layout/grid" + "components/v2"}) ;; A set of features which only affects on frontend and can be enabled ;; and disabled freely by the user any time. This features does not